diff options
author | Helmut Grohne <helmut@subdivi.de> | 2025-03-29 13:18:13 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2025-03-29 13:18:13 +0100 |
commit | 695c2e7b2a5e82b7e50b8472a6649584fa9406f1 (patch) | |
tree | e4e1513733a5b5330583c15012e7646f6168db90 | |
parent | b3d184543b47b73e6e6c829e84c7751d858dd2f1 (diff) | |
download | debvm-695c2e7b2a5e82b7e50b8472a6649584fa9406f1.tar.gz |
gitlab-ci: allow choosing the suite for performing architecture tests
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 890f49a..09e8a5f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,8 @@ image: debian:sid-slim +variables: + DEFAULT_SUITE: + description: Debian suite to use for architecture tests + value: sid shellcheck: script: @@ -56,4 +60,4 @@ arch_test: - apt-get dist-upgrade --yes - apt-get --no-install-recommends --yes install curl e2fsprogs expect mmdebstrap openssh-client qemu-system arch-test qemu-user-static file systemd dpkg-dev debian-ports-archive-keyring - /lib/systemd/systemd-binfmt - - PATH=$(pwd)/bin:$PATH ./tests/create-and-run.sh "$ARCHITECTURE" sid + - PATH=$(pwd)/bin:$PATH ./tests/create-and-run.sh "$ARCHITECTURE" "$DEFAULT_SUITE" |