Skip to content

Commit

Permalink
testing: re-add cinnabar cloning to test-runner* image build (Bug 1…
Browse files Browse the repository at this point in the history
…748903)

We removed this since we don't need to build the cinnabar helper
for testing any more, but we still need the `cinnabarclone.py` file
from the repo for some tests.
  • Loading branch information
cgsheeh committed Jan 20, 2022
1 parent cf7f9fa commit e505885
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions testing/docker/test-runner-py2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ RUN chown -R vct:vct /app

USER vct

# clone cinnabar for the `cinnabarclone` extension
RUN git clone \
--branch release \
https://github.com/glandium/git-cinnabar.git $VIRTUAL_ENV/git-cinnabar

WORKDIR /app

# Install editable requirements py2/py3
Expand Down
4 changes: 4 additions & 0 deletions testing/docker/test-runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ RUN pip install -e vct/pylib/vcsreplicator
RUN pip install -e vct/hghooks
RUN pip install -e vct/testing

# clone cinnabar for the `cinnabarclone` extension
RUN git clone \
--branch release \
https://github.com/glandium/git-cinnabar.git /app/venv/git-cinnabar
WORKDIR /app/vct

# Install Mercurials
Expand Down

0 comments on commit e505885

Please sign in to comment.