Attention is currently required from: fixeria, osmith.
lynxis lazus has posted comments on this change by fixeria. ( https://gerrit.osmocom.org/c/osmo-ci/+/40908?usp=email )
Change subject: jobs/gerrit-verifications: osmo-ttcn3-hacks: do make clean
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
@vyanitskiy@sysmocom.de thanks for fixing it.
But could we do always a clean jenkins workspace and move the /build directory into the workspace?
We could cache all external repositories (e.g. ttcn3) to prevent downloading them again and again in a separate .git directory.
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/40908?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I886a99e7b1e8c42ccc7441685ecd7b2c54d5a7af
Gerrit-Change-Number: 40908
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-CC: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 22 Aug 2025 20:49:53 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/40908?usp=email )
Change subject: jobs/gerrit-verifications: osmo-ttcn3-hacks: do make clean
......................................................................
jobs/gerrit-verifications: osmo-ttcn3-hacks: do make clean
It's easy to break the build verification [for everybody] by
submitting a patch that creates a symlink to a non-existent file.
The workspace is not wiped, so the stale symlink remains and results
in failures like this:
(cd sgsn && ./gen_links.sh && ./regen_makefile.sh)
ttcn3_makefilegen: error: Cannot find any source file for argument `NAS_Templates.ttcn'.
make: *** [Makefile:131: _build/sgsn/Makefile] Error 1
Let's invoke the 'clean' recipe before 'compile' to avoid this.
Change-Id: I886a99e7b1e8c42ccc7441685ecd7b2c54d5a7af
---
M jobs/gerrit-verifications.yml
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/08/40908/1
diff --git a/jobs/gerrit-verifications.yml b/jobs/gerrit-verifications.yml
index 48ba632..f91cbb8 100644
--- a/jobs/gerrit-verifications.yml
+++ b/jobs/gerrit-verifications.yml
@@ -524,7 +524,7 @@
ln -s "$i" /build/deps/
fi
done
- su build -c "make -C /build compile"
+ su build -c "make -C /build clean compile"
'
pipeline_binpkgs: ""
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/40908?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I886a99e7b1e8c42ccc7441685ecd7b2c54d5a7af
Gerrit-Change-Number: 40908
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>