laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/40989?usp=email )
Change subject: jobs: run ttcn3-remsim-test-asan with bookworm ......................................................................
jobs: run ttcn3-remsim-test-asan with bookworm
The default distribution to run ttcn3 testsuites and SUTs with has recently been changed from debian 12 (bookworm) to 13 (trixie). Since then we have seen 27 additional failures with osmocom:nightly:asan (while osmocom:nightly and osmocom:latest work fine). As the reason for this is currently unclear, revert to using debian 12 for this job for now, so this doesn't mask other errors that the job would find otherwise.
Related: OS#6845 Change-Id: I702770e36b47df0a47bc9a869127d6251290a7e4 --- M jobs/ttcn3-testsuites-testenv.yml 1 file changed, 5 insertions(+), 4 deletions(-)
Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified
diff --git a/jobs/ttcn3-testsuites-testenv.yml b/jobs/ttcn3-testsuites-testenv.yml index 40309a0..73f19ab 100644 --- a/jobs/ttcn3-testsuites-testenv.yml +++ b/jobs/ttcn3-testsuites-testenv.yml @@ -523,7 +523,8 @@
- ttcn3-remsim-test-asan: # ~6 min testsuite: remsim - args: -b osmocom:nightly:asan -c all + # "-d debian:bookworm": OS#6845 + args: -b osmocom:nightly:asan -c all -d debian:bookworm timer: H 17 * * *
- ttcn3-sccp-test-asan: # ~2 min @@ -591,11 +592,11 @@ which-build: last-successful stable: true - shell: |- - DISTRO="debian:trixie" - IMAGE="registry.osmocom.org/osmocom-build/"$(echo "$DISTRO" | tr : -)"-osmo-ttcn3-testenv" KERNEL="{kernel}"
- podman pull "$IMAGE" + for debver in trixie bookworm; do + podman pull registry.osmocom.org/osmocom-build/debian-"$debver"-osmo-ttcn3-testenv + done
rm -rf logs _cache .linux