osmith has submitted this change. (
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(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, approved
diff --git a/jobs/ttcn3-testsuites-testenv.yml
b/jobs/ttcn3-testsuites-testenv.yml
index c75f7b8..22287b0 100644
--- a/jobs/ttcn3-testsuites-testenv.yml
+++ b/jobs/ttcn3-testsuites-testenv.yml
@@ -644,7 +644,10 @@
# Clean up leftover apt partial directories, which the host system
# user can't remove directly
- for i in _cache/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/podman/var-*-apt-*/*/partial; do
if [ -e "$i" ]; then
podman run \
--rm \
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/43345?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I82eba41631d520abedc6fb2e2507afbbe618066a
Gerrit-Change-Number: 43345
Gerrit-PatchSet: 3
Gerrit-Owner: osmith <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <[email protected]>
Gerrit-Reviewer: osmith <[email protected]>
Gerrit-Reviewer: pespin <[email protected]>