osmith has uploaded this change for review. ( 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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/93/43493/1
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