diff options
author | 2020-11-18 13:59:08 +0100 | |
---|---|---|
committer | 2020-11-18 13:59:30 +0100 | |
commit | cecad91334473652726d940426d26be7c23464e4 (patch) | |
tree | ccb677cc361f95fb401834ea721c6ad172477b05 /ci/setup.yml | |
parent | Use correct conditional expression for prod steps (diff) |
Update files according to new CI setupsebastiaan/backend/cache-docker-images
Diffstat (limited to 'ci/setup.yml')
-rw-r--r-- | ci/setup.yml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ci/setup.yml b/ci/setup.yml deleted file mode 100644 index 1c66aa7..0000000 --- a/ci/setup.yml +++ /dev/null @@ -1,23 +0,0 @@ -steps: - # The linter and all tests run inside this container. - # The venv image will be pulled if it doesn't exist locally. - - script: | - docker run \ - --tty \ - --detach \ - --name snekbox_test \ - --privileged \ - --hostname pdsnk-dev \ - -e PYTHONDONTWRITEBYTECODE=1 \ - -e PIPENV_PIPFILE="/snekbox/Pipfile" \ - -e ENV="${PWD}/scripts/.profile" \ - --volume "${PWD}":"${PWD}" \ - --workdir "${PWD}"\ - --entrypoint /bin/bash \ - pythondiscord/snekbox-venv:latest - displayName: 'Start Container' - - - script: | - docker exec snekbox_test /bin/bash -c \ - 'pipenv install --system --deploy --dev' - displayName: 'Install Development Dependencies' |