aboutsummaryrefslogtreecommitdiffstats
path: root/ttcn3-msc-test/Dockerfile
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-02-10 15:22:21 +0100
committerOliver Smith <osmith@sysmocom.de>2021-02-11 15:45:40 +0100
commit892d910444f7572da9591305dce0e630aeec3104 (patch)
tree854c514530ef42b1e845705f3af40a4c0b9b9960 /ttcn3-msc-test/Dockerfile
parent73d23109b14aaf2031b60cc06eec3573ae4920bc (diff)
ttcn3: move prepare code to shared script
Move the git fetch/checkout code and make call to build the testsuite, to debian-stretch-titan/ttcn3-docker-prepare.sh. In the next patch, I will extend the script to update deps right before building too (e.g. because OSMO_TTCN3_BRANCH changed). Related: OS#5017 Change-Id: I4b5bedf058dc527e821f9b7204c632820e671af9
Diffstat (limited to 'ttcn3-msc-test/Dockerfile')
-rw-r--r--ttcn3-msc-test/Dockerfile7
1 files changed, 1 insertions, 6 deletions
diff --git a/ttcn3-msc-test/Dockerfile b/ttcn3-msc-test/Dockerfile
index bb04c10..93b3e0a 100644
--- a/ttcn3-msc-test/Dockerfile
+++ b/ttcn3-msc-test/Dockerfile
@@ -3,12 +3,7 @@ FROM $USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
-RUN cd osmo-ttcn3-hacks && \
- git fetch && \
- git checkout $OSMO_TTCN3_BRANCH && \
- (git symbolic-ref -q HEAD && git reset --hard origin/$OSMO_TTCN3_BRANCH || exit 1); \
- git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
- make msc
+RUN ttcn3-docker-prepare "$OSMO_TTCN3_BRANCH" msc
VOLUME /data