osmith has uploaded this change for review.

View Change

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


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

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