-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The loss of the buildah feature forces us to have a flow like this. What we output here is an ostree-container aka `bare-split-xattrs` format. Signed-off-by: Colin Walters <[email protected]>
- Loading branch information
Showing
7 changed files
with
319 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -200,6 +200,30 @@ jobs: | |
run: tar -C / -xzvf install.tar | ||
- name: Integration tests | ||
run: env TMPDIR=/var/tmp JOBS=3 ./tests/compose-image.sh | ||
compose-rootfs: | ||
name: "compose-rootfs tests" | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
# https://github.com/containers/podman/discussions/17362 | ||
- name: Get a newer podman for heredoc support (from debian testing) | ||
run: | | ||
set -eux | ||
echo 'deb [trusted=yes] https://ftp.debian.org/debian/ testing main' | sudo tee /etc/apt/sources.list.d/testing.list | ||
sudo apt update | ||
sudo apt install -y crun/testing podman/testing skopeo/testing | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Download build | ||
uses: actions/[email protected] | ||
with: | ||
name: install.tar | ||
- name: Install | ||
run: tar -C / -xzvf install.tar | ||
- name: Test compose-rootfs | ||
run: | | ||
cd tests/compose | ||
sudo podman build -v ./usr/bin/rpm-ostree:/run/build/rpm-ostree:ro --security-opt=label=disable --cap-add=all --device /dev/fuse -t localhost/test -f Containerfile . | ||
container-encapsulate: | ||
name: "Encapsulate tests" | ||
needs: build | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.