osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/43345?usp=email )
Change subject: jobs/ttcn3-testsuites-testenv: adjust apt pattern ......................................................................
jobs/ttcn3-testsuites-testenv: adjust apt pattern
The current pattern didn't match the path with archives, which means it could still fail with the following. Adjust it.
+ mv /tmp/jenkins/ttcn3-hss-test-ogs-latest _cache mv: cannot access '/tmp/jenkins/ttcn3-hss-test-ogs-latest/podman/var-cache-apt-debian-trixie/archives/partial': Permission denied
Change-Id: I82eba41631d520abedc6fb2e2507afbbe618066a --- M jobs/ttcn3-testsuites-testenv.yml 1 file changed, 4 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/45/43345/1
diff --git a/jobs/ttcn3-testsuites-testenv.yml b/jobs/ttcn3-testsuites-testenv.yml index 59b168c..b4d114a 100644 --- a/jobs/ttcn3-testsuites-testenv.yml +++ b/jobs/ttcn3-testsuites-testenv.yml @@ -650,7 +650,10 @@ fix_cache_tmpfs_permissions() {{ local i
- for i in "$CACHE_TMPFS"/podman/var-lib-apt-debian-*/lists/partial; do + # Examples: + # * …/podman/var-cache-apt-debian-trixie/archives/partial + # * …/podman/var-lib-apt-debian-trixie/lists/partial + for i in "$CACHE_TMPFS"/podman/var-*-apt-*/*/partial; do if [ -e "$i" ]; then podman run \ --rm \