diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-01-11 20:34:12 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-01-11 20:34:12 +0100 |
commit | 0fb18186ca3ed2ac16efeb34ea3840e17aafaa3d (patch) | |
tree | 69320b90f98e6dac46846cb64b6b82139c7c1bc0 | |
parent | aece2dad3e16feb6073e17a3b61dfd8d69007ecb (diff) | |
download | debvm-0fb18186ca3ed2ac16efeb34ea3840e17aafaa3d.tar.gz |
CI: attempt to fix by not using a relative path in $PATH
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0da847f..d7f2aee 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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=./bin:$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=./bin:$PATH ./tests/create-and-run.sh "$ARCHITECTURE" sid + - PATH=$(pwd)/bin:$PATH ./tests/create-and-run.sh "$ARCHITECTURE" sid |