File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 97
97
run : sudo tar -C / -xvf bootc.tar.zst
98
98
- name : Integration tests
99
99
run : bootc internal-tests run-container-integration
100
+ privtest-alongside :
101
+ name : " Test install-alongside"
102
+ needs : build
103
+ runs-on : ubuntu-latest
104
+ steps :
105
+ - name : Download
106
+ uses : actions/download-artifact@v2
107
+ with :
108
+ name : bootc.tar.zst
109
+ - name : Install
110
+ run : tar -xvf bootc.tar.zst
111
+ - name : Update host skopeo
112
+ run : |
113
+ echo 'deb http://cz.archive.ubuntu.com/ubuntu lunar main universe' | sudo tee -a /etc/apt/sources.list
114
+ sudo apt update
115
+ sudo apt upgrade skopeo
116
+ - name : Integration tests
117
+ run : |
118
+ set -xeuo pipefail
119
+ sudo podman run --rm -ti --privileged -v /:/target -v ./usr/bin/bootc:/usr/bin/bootc --pid=host --security-opt label=disable \
120
+ registry.gitlab.com/centos/cloud/sagano/fedora-boot-tier-1-dev:eln bootc install-to-filesystem --target-no-signature-verification \
121
+ --karg=foo=bar --disable-selinux --replace=alongside /target
122
+ ls -al /boot/loader/
123
+ sudo grep foo=bar /boot/loader/entries/*.conf
You can’t perform that action at this time.
0 commit comments