diff options
author | Helmut Grohne <helmutg@debian.org> | 2023-01-15 08:54:06 +0000 |
---|---|---|
committer | Helmut Grohne <helmutg@debian.org> | 2023-01-15 08:54:06 +0000 |
commit | b6aee3905cc52fa206cfbef3fe01d2c6388435a1 (patch) | |
tree | 86ab25a9c7434d62019359da0f996d2097aa8247 /.gitlab-ci.yml | |
parent | 59c77e0c3422287651c6e270917bcfa04a6c17a6 (diff) | |
parent | ca2cbf6d84dcc96845fcc6521aebe3b5076cdb32 (diff) | |
download | debvm-b6aee3905cc52fa206cfbef3fe01d2c6388435a1.tar.gz |
Merge branch 'helmut' into 'main'
reduce usage of DEBVER
See merge request helmutg/debvm!22
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 456e8d9..29e0783 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,14 +5,14 @@ shellcheck: - apt-get update - apt-get dist-upgrade --yes - apt-get --no-install-recommends --yes install shellcheck - - shellcheck -P tests debvm-* tests/*.sh + - shellcheck -P tests bin/* share/*.sh tests/*.sh codespell: script: - apt-get update - apt-get dist-upgrade --yes - apt-get --no-install-recommends --yes install codespell - - codespell debvm-* tests/*.sh + - codespell bin/* share/*.sh tests/*.sh release_test: parallel: @@ -28,7 +28,7 @@ release_test: - apt-get update - apt-get dist-upgrade --yes - apt-get --no-install-recommends --yes install e2fsprogs genext2fs mmdebstrap openssh-client qemu-kvm - - PATH=.:$PATH ./tests/create-and-run.sh $(dpkg --print-architecture) "$RELEASE" + - PATH=$(pwd)/bin:$PATH ./tests/create-and-run.sh $(dpkg --print-architecture) "$RELEASE" arch_test: parallel: @@ -46,4 +46,4 @@ arch_test: - apt-get update - apt-get dist-upgrade --yes - apt-get --no-install-recommends --yes install e2fsprogs genext2fs mmdebstrap openssh-client qemu-system binfmt-support arch-test qemu-user-static - - PATH=.:$PATH ./tests/create-and-run.sh "$ARCHITECTURE" sid + - PATH=$(pwd)/bin:$PATH ./tests/create-and-run.sh "$ARCHITECTURE" sid |