osmith has uploaded this change for review.

View Change

jobs/gerrit: osmo-ttcn3-hacks: tweak make lines

* The "make clean" is not needed, as the osmo-ttcn3-hacks.git repository
is a fresh clone of code that was submitted to gerrit.
* The "make deps" is not needed, as "make compile" depends on the deps
target.
* Combine the cd and make lines.
* Remove ; at the end of lines, as it is not needed
* Switch " and ', so variables can be used with less escaping in future
patches in this block.

Change-Id: Iac179bfb26478ecab51f47e469b4be7b0f9a5a94
---
M jobs/gerrit-verifications.yml
1 file changed, 4 insertions(+), 7 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/25/38225/1
diff --git a/jobs/gerrit-verifications.yml b/jobs/gerrit-verifications.yml
index a21e42a..58752cd 100644
--- a/jobs/gerrit-verifications.yml
+++ b/jobs/gerrit-verifications.yml
@@ -442,13 +442,10 @@
-v "$PWD:/build" \
"registry.osmocom.org/osmocom-build/debian-bookworm-titan" \
{timeout_cmd} \
- sh -e -x -c "
- useradd --uid=1000 build;
- cd /build;
- su build -c 'make deps';
- su build -c 'make clean';
- su build -c 'make compile';
- "
+ sh -e -x -c '
+ useradd --uid=1000 build
+ su build -c "make -C /build compile"
+ '
pipeline_binpkgs: ""

- dahdi-tools:

To view, visit change 38225. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Iac179bfb26478ecab51f47e469b4be7b0f9a5a94
Gerrit-Change-Number: 38225
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith@sysmocom.de>