Browse Source

🚧 added build docker job

only env and image, also i commented the test job in the workflow as tests aren't passing rn
pull/1/head
Francois Lannoy 6 years ago
parent
commit
469b12d40f
  1. 17
      .circleci/config.yml

17
.circleci/config.yml

@ -43,14 +43,25 @@ jobs:
. venv/bin/activate
flask db upgrade
flask test
build_docker:
environment:
IMAGE_NAME: sgttabouret/my-awesome-ci-expr
docker:
- image: circleci/buildpack-deps:stretch
workflows:
version: 2
build-test:
jobs:
- build
- test:
# - test:
# context:
# - back_final
# requires:
# - build
- build_docker:
requires:
# - test
- build
context:
- back_final
requires:
- build
Loading…
Cancel
Save