osmith has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/40260?usp=email )
Change subject: nplab: don't use deprecated git.osmocom.org ......................................................................
nplab: don't use deprecated git.osmocom.org
Update the git clones to point to gitea.
Change-Id: If6859323b5af3bd13a974cd1d676d4f19aa16773 --- M nplab-m3ua-test/Dockerfile M nplab-sua-test/Dockerfile 2 files changed, 4 insertions(+), 5 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/nplab-m3ua-test/Dockerfile b/nplab-m3ua-test/Dockerfile index 9e4f7c4..e5cc00f 100644 --- a/nplab-m3ua-test/Dockerfile +++ b/nplab-m3ua-test/Dockerfile @@ -1,9 +1,8 @@ ARG USER=osmocom-build FROM $USER/sigtran-tests
- -RUN cd /tmp && git clone https://git.osmocom.org/nplab/m3ua-testtool -ADD http://git.osmocom.org/nplab/m3ua-testtool/patch/?h=laforge/python3 /tmp/commit +RUN cd /tmp && git clone https://gitea.osmocom.org/nplab/m3ua-testtool +ADD https://gitea.osmocom.org/api/v1/repos/nplab/m3ua-testtool/git/refs/heads/la... /tmp/commit RUN cd /tmp/m3ua-testtool && \ git fetch && \ git checkout -f laforge/python3 && \ diff --git a/nplab-sua-test/Dockerfile b/nplab-sua-test/Dockerfile index 5957c26..946fe2e 100644 --- a/nplab-sua-test/Dockerfile +++ b/nplab-sua-test/Dockerfile @@ -2,8 +2,8 @@ FROM $USER/sigtran-tests
-RUN cd /tmp && git clone https://git.osmocom.org/nplab/sua-testtool -ADD http://git.osmocom.org/nplab/sua-testtool/patch/?h=laforge/python3 /tmp/commit +RUN cd /tmp && git clone https://gitea.osmocom.org/nplab/sua-testtool +ADD https://gitea.osmocom.org/api/v1/repos/nplab/sua-testtool/git/refs/heads/laf... /tmp/commit RUN cd /tmp/sua-testtool && \ git fetch && \ git checkout -f laforge/python3 && \