diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2016-04-14 02:24:48 -0400 |
---|---|---|
committer | MatthewLi <matthew.lijun@huawei.com> | 2016-04-14 02:24:48 -0400 |
commit | 43c038ddf45d5343f23cc0dbdd39c1eb8890f073 (patch) | |
tree | 6a6e6928d015ceb30d75e9a85e3c2645ff3716c2 /ci/docker/Dockerfile | |
parent | a270ce8532bff390a08169786c39363f70ee0c1d (diff) |
bugfix: docker ci workflow bugfix
Change-Id: I1215c6ecc9642bb2e4d433276fc3f6941e775e0b
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'ci/docker/Dockerfile')
-rw-r--r-- | ci/docker/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/docker/Dockerfile b/ci/docker/Dockerfile index a8f7e389..375ceba6 100644 --- a/ci/docker/Dockerfile +++ b/ci/docker/Dockerfile @@ -38,7 +38,7 @@ RUN apt-get -y autoremove && \ RUN mkdir -p ${REPOS_DIR} RUN git config --global http.sslVerify false -# TODO fix code clone handler -#RUN git clone https://gerrit.opnfv.org/gerrit/bottlenecks ${BOTTLENECKS_REPO_DIR} -#RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR} +RUN git clone https://gerrit.opnfv.org/gerrit/bottlenecks ${BOTTLENECKS_REPO_DIR} +RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR} +COPY ../../run_tests.sh /usr/local/bin/ |