osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/43493?usp=email )
Change subject: jobs/ttcn3-testsuites-testenv: fix stray linux file ......................................................................
jobs/ttcn3-testsuites-testenv: fix stray linux file
Fix that if the kernel is set to "none", we keep a dummy linux file in the top directory.
Change-Id: I2e936fc2aef144ca2a55e47508e2abb2730e04e2 --- M jobs/ttcn3-testsuites-testenv.yml 1 file changed, 3 insertions(+), 1 deletion(-)
Approvals: fixeria: Looks good to me, but someone else must approve pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/jobs/ttcn3-testsuites-testenv.yml b/jobs/ttcn3-testsuites-testenv.yml index 35af150..0b5dba7 100644 --- a/jobs/ttcn3-testsuites-testenv.yml +++ b/jobs/ttcn3-testsuites-testenv.yml @@ -678,7 +678,9 @@
rm -rf logs cache src/osmo-ttcn3-hacks/.linux
- if [ "$KERNEL" != "none" ]; then + if [ "$KERNEL" = "none" ]; then + rm linux + else mv linux src/osmo-ttcn3-hacks/.linux fi