Try it in a working environment ... ?

This commit is contained in:
Jean-Paul Calderone 2019-09-13 13:00:35 -04:00
parent 00394de676
commit b462d294a5

View File

@ -296,19 +296,27 @@ jobs:
- store_artifacts: *STORE_OTHER_ARTIFACTS - store_artifacts: *STORE_OTHER_ARTIFACTS
- run: *SUBMIT_COVERAGE - run: *SUBMIT_COVERAGE
# Generate up-to-date data for the dependency graph visualizer.
build-porting-depgraph: build-porting-depgraph:
# Generate up-to-date data for the dependency graph visualizer. # Get a system in which we can easily install Tahoe-LAFS and all its
docker: # dependencies. The dependency graph analyzer works by executing the code.
- image: "python:2.7-buster" # It's Python, what do you expect?
<<: *DEBIAN
steps: steps:
- "checkout" - "checkout"
- add_ssh_keys: - add_ssh_keys:
fingerprints: fingerprints:
# Jean-Paul Calderone <exarkun@twistedmatrix.com> (CircleCI depgraph key) # Jean-Paul Calderone <exarkun@twistedmatrix.com> (CircleCI depgraph key)
# This lets us push to tahoe-lafs/tahoe-depgraph in the next step. # This lets us push to tahoe-lafs/tahoe-depgraph in the next step.
- "86:38:18:a7:c0:97:42:43:18:46:55:d6:21:b0:5f:d4" - "86:38:18:a7:c0:97:42:43:18:46:55:d6:21:b0:5f:d4"
- run:
name: "Setup Python Environment"
command: |
/tmp/venv/bin/pip install -e /tmp/project
- run: - run:
name: "Generate dependency graph data" name: "Generate dependency graph data"
command: | command: |