Simplify git checkout, allow branches and commits
Replace the following statements: a) "git checkout -f -B $BRANCH origin/$BRANCH" b) "git checkout -f -B $BRANCH $BRANCH" with: c) "git checkout -f $BRANCH" Regarding a), we don't need to specify 'origin/' for each branch, since we are cloning the repositories in the same Dockerfile, and therefore we know for sure that there is only one remote and branch names won't be ambiguous. Removing the 'origin/' allows to put commit hashes into the branch variables (like done in the new bisect script [1]). Version b) does not work with branch names: $ git checkout -f -B osmith/check-imei-before-lu osmith/check-imei-before-lu fatal: Cannot update paths and switch to branch 'osmith/check-imei-before-lu' at the same time. Did you intend to checkout 'osmith/check-imei-before-lu' which can not be resolved as commit? New version c) works with both commits and branches, and it is shorter. [1] Change-Id: I11f7e61a9b30d58a0fdfcaf77dde447806bf661f Change-Id: I2ff745c8d19b777d876170d5717c082ceb68a1f3changes/95/13895/1
parent
269331461a
commit
26565bb729
|
@ -50,7 +50,7 @@ RUN git clone git://git.osmocom.org/libosmocore
|
|||
ADD http://git.osmocom.org/libosmocore/patch?h=$LIBOSMOCORE_BRANCH /tmp/commit-libosmocore
|
||||
|
||||
RUN cd libosmocore \
|
||||
&& git fetch && git checkout -f -B $LIBOSMOCORE_BRANCH origin/$LIBOSMOCORE_BRANCH \
|
||||
&& git fetch && git checkout -f $LIBOSMOCORE_BRANCH \
|
||||
&& git rev-parse --abbrev-ref HEAD && git rev-parse HEAD \
|
||||
&& autoreconf -fi \
|
||||
&& ./configure \
|
||||
|
@ -65,7 +65,7 @@ RUN git clone git://git.osmocom.org/gr-gsm
|
|||
ADD http://git.osmocom.org/gr-gsm/patch?h=$GR_GSM_BRANCH /tmp/commit-gr-gsm
|
||||
|
||||
RUN cd gr-gsm \
|
||||
&& git fetch && git checkout -f -B $GR_GSM_BRANCH origin/$GR_GSM_BRANCH \
|
||||
&& git fetch && git checkout -f $GR_GSM_BRANCH \
|
||||
&& git rev-parse HEAD \
|
||||
&& mkdir build/ \
|
||||
&& cd build/ \
|
||||
|
|
|
@ -32,7 +32,7 @@ RUN git clone git://git.osmocom.org/osmo-bsc.git
|
|||
ADD http://git.osmocom.org/osmo-bsc/patch?h=$OSMO_BSC_BRANCH /tmp/commit-osmo-bsc
|
||||
|
||||
RUN cd osmo-bsc && \
|
||||
git fetch && git checkout -f -B $OSMO_BSC_BRANCH $OSMO_BSC_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_BSC_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
|
|
|
@ -33,7 +33,7 @@ RUN git clone git://git.osmocom.org/osmo-bts.git
|
|||
ADD http://git.osmocom.org/osmo-bts/patch?h=$OSMO_BTS_BRANCH /tmp/commit-osmo-bts
|
||||
|
||||
RUN cd osmo-bts && \
|
||||
git fetch && git checkout -f -B $OSMO_BTS_BRANCH $OSMO_BTS_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_BTS_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure --enable-trx && \
|
||||
|
|
|
@ -45,7 +45,7 @@ RUN git clone --reference osmo-mgw git://git.osmocom.org/openbsc.git && \
|
|||
# build libasn1c first, no libosmo* dependency and infrequent changes
|
||||
ADD http://git.osmocom.org/libasn1c/patch /tmp/commit-libasn1c
|
||||
RUN cd libasn1c && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j8 && \
|
||||
|
@ -56,7 +56,7 @@ RUN cd libasn1c && \
|
|||
# build libsmpp34 first, no libosmo* dependency and infrequent changes
|
||||
ADD http://git.osmocom.org/libsmpp34/patch /tmp/commit-libsmpp34
|
||||
RUN cd libsmpp34 && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j1 && \
|
||||
|
@ -67,7 +67,7 @@ RUN cd libsmpp34 && \
|
|||
# build libosmocore before any of its downatream dependences
|
||||
ADD http://git.osmocom.org/libosmocore/patch /tmp/commit-libosmocore
|
||||
RUN cd libosmocore && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j8 && \
|
||||
|
@ -79,7 +79,7 @@ RUN cd libosmocore && \
|
|||
|
||||
ADD http://git.osmocom.org/libosmo-abis/patch /tmp/commit-libosmo-abis
|
||||
RUN cd libosmo-abis && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j8 && \
|
||||
|
@ -89,7 +89,7 @@ RUN cd libosmo-abis && \
|
|||
|
||||
ADD http://git.osmocom.org/libosmo-netif/patch /tmp/commit-libosmo-netif
|
||||
RUN cd libosmo-netif && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j8 && \
|
||||
|
@ -99,7 +99,7 @@ RUN cd libosmo-netif && \
|
|||
|
||||
ADD http://git.osmocom.org/libosmo-sccp/patch /tmp/commit-libosmo-sccp
|
||||
RUN cd libosmo-sccp && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j8 && \
|
||||
|
@ -109,7 +109,7 @@ RUN cd libosmo-sccp && \
|
|||
|
||||
ADD http://git.osmocom.org/osmo-mgw/patch /tmp/commit-osmo-mgw
|
||||
RUN cd osmo-mgw && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j8 && \
|
||||
|
@ -119,7 +119,7 @@ RUN cd osmo-mgw && \
|
|||
|
||||
ADD http://git.osmocom.org/osmo-iuh/patch /tmp/commit-osmo-iuh
|
||||
RUN cd osmo-iuh && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j8 && \
|
||||
|
@ -129,7 +129,7 @@ RUN cd osmo-iuh && \
|
|||
|
||||
ADD http://git.osmocom.org/osmo-ggsn/patch /tmp/commit-osmo-ggsn
|
||||
RUN cd osmo-ggsn && \
|
||||
git fetch && git checkout -f -B master origin/master && \
|
||||
git fetch && git checkout -f master && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
make -j8 && \
|
||||
|
@ -139,4 +139,4 @@ RUN cd osmo-ggsn && \
|
|||
|
||||
|
||||
# example command which builds a single osmo-* application at 'docker run' time in tmpfs
|
||||
CMD /bin/sh -c 'cd /tmpfs && git clone --reference /build/openbsc git://git.osmocom.org/openbsc.git && cd openbsc && git checkout -f -B master origin/master && cd openbsc && autoreconf -fi && ./configure --enable-nat --enable-osmo-bsc --enable-smpp --enable-vty-tests --enable-external-tests && make -j8 check'
|
||||
CMD /bin/sh -c 'cd /tmpfs && git clone --reference /build/openbsc git://git.osmocom.org/openbsc.git && cd openbsc && git checkout -f master && cd openbsc && autoreconf -fi && ./configure --enable-nat --enable-osmo-bsc --enable-smpp --enable-vty-tests --enable-external-tests && make -j8 check'
|
||||
|
|
|
@ -25,7 +25,7 @@ ARG OSMO_GGSN_BRANCH="master"
|
|||
RUN git clone git://git.osmocom.org/osmo-ggsn.git
|
||||
ADD http://git.osmocom.org/osmo-ggsn/patch/?h=$OSMO_GGSN_BRANCH /tmp/commit
|
||||
RUN cd osmo-ggsn && \
|
||||
git fetch && git checkout -f -B $OSMO_GGSN_BRANCH $OSMO_GGSN_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_GGSN_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
|
|
|
@ -30,7 +30,7 @@ RUN git clone git://git.osmocom.org/osmo-hlr.git
|
|||
ADD http://git.osmocom.org/osmo-hlr/patch?h=$OSMO_HLR_BRANCH /tmp/commit-osmo-hlr
|
||||
|
||||
RUN cd osmo-hlr && \
|
||||
git fetch && git checkout -f -B $OSMO_HLR_BRANCH $OSMO_HLR_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_HLR_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
|
|
|
@ -30,7 +30,7 @@ RUN git clone git://git.osmocom.org/osmo-iuh.git
|
|||
ADD http://git.osmocom.org/osmo-iuh/patch?h=$OSMO_IUH_BRANCH /tmp/commit-osmo-mgw
|
||||
|
||||
RUN cd osmo-iuh && \
|
||||
git fetch && git checkout -f -B $OSMO_IUH_BRANCH $OSMO_IUH_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_IUH_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
|
|
|
@ -30,7 +30,7 @@ ADD http://git.osmocom.org/osmo-mgw/patch?h=$OSMO_MGW_BRANCH /tmp/commit-osmo-mg
|
|||
|
||||
|
||||
RUN cd osmo-mgw && \
|
||||
git fetch && git checkout -f -B $OSMO_MGW_BRANCH $OSMO_MGW_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_MGW_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
|
|
|
@ -37,7 +37,7 @@ RUN git clone git://git.osmocom.org/osmo-msc.git
|
|||
ADD http://git.osmocom.org/osmo-msc/patch?h=$OSMO_MSC_BRANCH /tmp/commit-osmo-msc
|
||||
|
||||
RUN cd osmo-msc && \
|
||||
git fetch && git checkout -f -B $OSMO_MSC_BRANCH $OSMO_MSC_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_MSC_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure --enable-smpp --enable-iu && \
|
||||
|
|
|
@ -31,7 +31,7 @@ RUN git clone git://git.osmocom.org/openbsc.git
|
|||
ADD http://git.osmocom.org/openbsc/patch?h=$OSMO_NITB_BRANCH /tmp/commit-openbsc
|
||||
|
||||
RUN cd openbsc/openbsc && \
|
||||
git fetch && git checkout -f -B $OSMO_NITB_BRANCH $OSMO_NITB_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_NITB_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure --enable-nat --enable-osmo-bsc --enable-smpp && \
|
||||
|
|
|
@ -28,7 +28,7 @@ RUN git clone git://git.osmocom.org/osmo-pcu.git
|
|||
ADD http://git.osmocom.org/osmo-pcu/patch?h=$OSMO_PCU_BRANCH /tmp/commit-osmo-pcu
|
||||
|
||||
RUN cd osmo-pcu && \
|
||||
git fetch && git checkout -f -B $OSMO_PCU_BRANCH $OSMO_PCU_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_PCU_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure --enable-trx && \
|
||||
|
|
|
@ -32,7 +32,7 @@ RUN git clone git://git.osmocom.org/osmo-sgsn.git
|
|||
ADD http://git.osmocom.org/osmo-sgsn/patch?h=$OSMO_SGSN_BRANCH /tmp/commit
|
||||
|
||||
RUN cd osmo-sgsn && \
|
||||
git fetch && git checkout -f -B $OSMO_SGSN_BRANCH $OSMO_SGSN_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_SGSN_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
|
|
|
@ -36,7 +36,7 @@ RUN git clone git://git.osmocom.org/osmo-sip-connector.git
|
|||
ADD http://git.osmocom.org/osmo-sip-connector/patch?h=$OSMO_SIP_BRANCH /tmp/commit-osmo-sip-connector
|
||||
|
||||
RUN cd osmo-sip-connector && \
|
||||
git fetch && git checkout -f -B $OSMO_SIP_BRANCH $OSMO_SIP_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_SIP_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure --enable-smpp --enable-iu && \
|
||||
|
|
|
@ -26,7 +26,7 @@ ARG OSMO_STP_BRANCH="master"
|
|||
RUN git clone git://git.osmocom.org/libosmo-sccp.git
|
||||
ADD http://git.osmocom.org/libosmo-sccp/patch?h=$OSMO_STP_BRANCH /tmp/commit
|
||||
RUN cd libosmo-sccp && \
|
||||
git fetch && git checkout -f -B $OSMO_STP_BRANCH $OSMO_STP_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_STP_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
autoreconf -fi && \
|
||||
./configure && \
|
||||
|
|
|
@ -25,7 +25,7 @@ RUN git clone git://git.osmocom.org/osmocom-bb.git
|
|||
|
||||
ADD http://git.osmocom.org/osmocom-bb/patch?h=$OSMO_BB_BRANCH /tmp/commit
|
||||
RUN cd osmocom-bb && \
|
||||
git fetch && git checkout -f -B $OSMO_BB_BRANCH origin/$OSMO_BB_BRANCH && \
|
||||
git fetch && git checkout -f $OSMO_BB_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD
|
||||
|
||||
RUN cd osmocom-bb/src/host/trxcon && \
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
RUN git config --global user.email docker@dock.er && \
|
||||
|
@ -16,7 +16,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make bsc
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
RUN git config --global user.email docker@dock.er && \
|
||||
|
@ -16,7 +16,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make bsc-nat
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
RUN git config --global user.email docker@dock.er && \
|
||||
|
@ -16,7 +16,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make deps-update bts
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ FROM $USER/debian-stretch-titan
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
ARG OSMO_TTCN3_BRANCH="master"
|
||||
|
@ -12,7 +12,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make ggsn_tests
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
RUN git config --global user.email docker@dock.er && \
|
||||
|
@ -16,7 +16,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make deps-update hlr
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
ARG OSMO_TTCN3_BRANCH="master"
|
||||
|
@ -13,7 +13,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make mgw
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
RUN git config --global user.email docker@dock.er && \
|
||||
|
@ -16,7 +16,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make msc
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
ARG OSMO_TTCN3_BRANCH="master"
|
||||
|
@ -13,7 +13,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make sysinfo
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
RUN git config --global user.email docker@dock.er && \
|
||||
|
@ -16,7 +16,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make pcu
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
RUN git config --global user.email docker@dock.er && \
|
||||
|
@ -16,7 +16,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make sgsn
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ RUN mkdir /root/projects && (cd /root/projects && ln -sf / git)
|
|||
RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git
|
||||
|
||||
RUN cd osmo-ttcn3-hacks && \
|
||||
git checkout -f -B master origin/master && \
|
||||
git checkout -f master && \
|
||||
make deps
|
||||
|
||||
RUN git config --global user.email docker@dock.er && \
|
||||
|
@ -16,7 +16,7 @@ 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 -f -B $OSMO_TTCN3_BRANCH origin/$OSMO_TTCN3_BRANCH && \
|
||||
git checkout -f $OSMO_TTCN3_BRANCH && \
|
||||
git rev-parse --abbrev-ref HEAD && git rev-parse HEAD && \
|
||||
make sip
|
||||
|
||||
|
|
Loading…
Reference in New Issue