From c0e4dfc7310971a4cb0d49c0f6fb930625e2725d Mon Sep 17 00:00:00 2001 From: Jonathan DEKHTIAR Date: Mon, 23 Mar 2020 12:55:04 -0700 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 54 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 51 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e396f5c..9ecf150 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,8 +16,42 @@ jobs: - run: name: TEST BUILD - Build Docker Image Python 3 Tensorflow Nightly GPU command: | - cd docker - docker build -t nightly_py3_gpu . --build-arg TF_CONTAINER_VERSION="latest" + cd .circleci/ + docker build -t nightly_py3_gpu . --build-arg TF_CONTAINER_VERSION="nightly-gpu-py3" + + test_latest_py3_gpu: + working_directory: ~/build + docker: + - image: docker:git + steps: + - checkout + + - setup_remote_docker: + reusable: true + exclusive: true + + - run: + name: TEST BUILD - Build Docker Image Python 3 Tensorflow Latest GPU + command: | + cd .circleci/ + docker build -t latest_py3_gpu . --build-arg TF_CONTAINER_VERSION="latest-gpu-py3" + + test_latest_devel_py3_gpu: + working_directory: ~/build + docker: + - image: docker:git + steps: + - checkout + + - setup_remote_docker: + reusable: true + exclusive: true + + - run: + name: TEST BUILD - Build Docker Image Python 3 Tensorflow Latest Devel GPU + command: | + cd .circleci/ + docker build -t latest_devel_py3_gpu . --build-arg TF_CONTAINER_VERSION="latest-devel-gpu-py3" ################################################################################### @@ -38,7 +72,21 @@ workflows: tags: ignore: /.*/ branches: - ignore: master + ignore: master + + - test_latest_py3_gpu: + filters: + tags: + ignore: /.*/ + branches: + ignore: master + + - test_latest_devel_py3_gpu: + filters: + tags: + ignore: /.*/ + branches: + ignore: master # - test_nightly_py3_gpu: # filters: