Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan DEKHTIAR authored Mar 23, 2020
1 parent 14cc316 commit c0e4dfc
Showing 1 changed file with 51 additions and 3 deletions.
54 changes: 51 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
###################################################################################
Expand All @@ -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:
Expand Down

0 comments on commit c0e4dfc

Please sign in to comment.