diff options
author | Jochen Sprickerhof <git@jochen.sprickerhof.de> | 2022-12-23 23:14:34 +0100 |
---|---|---|
committer | Jochen Sprickerhof <git@jochen.sprickerhof.de> | 2022-12-23 23:14:34 +0100 |
commit | 6f6f3d632c199fd56e5063d6e5ecab13ea69ac55 (patch) | |
tree | 2ed9ed579b03cf55f5a2a41395f3f74edc5669bd /.gitlab-ci.yml | |
parent | c9a0ca87fc9b3bdb3350663be663835fcbf15190 (diff) | |
download | debvm-6f6f3d632c199fd56e5063d6e5ecab13ea69ac55.tar.gz |
Simplify .gitlab-ci.yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5d5f375..3d91676 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,10 +42,7 @@ arch_test: - ppc64el - s390x script: - - | - if [ ! -e /proc/sys/fs/binfmt_misc/status ]; then - mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc - fi + - test -e /proc/sys/fs/binfmt_misc/status || mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc - apt-get update - apt-get dist-upgrade --yes - apt-get --no-install-recommends --yes install e2fsprogs genext2fs mmdebstrap openssh-client sleepenh qemu-system binfmt-support arch-test qemu-user-static |