From 469b12d40f202c3a989be769cfcb388c40abe1b9 Mon Sep 17 00:00:00 2001 From: Francois Lannoy Date: Sun, 10 Jan 2021 12:28:25 +0100 Subject: [PATCH] :construction: added build docker job only env and image, also i commented the test job in the workflow as tests aren't passing rn --- .circleci/config.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b8a12be..07b3e3e 100644 --- a/.circleci/config.yml +++ b/.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 \ No newline at end of file