Skip to content

Commit

Permalink
[KED-2961] Move scripts from private-kedro-sync to develop (#1125)
Browse files Browse the repository at this point in the history
* Add files in tools/circleci/

* Get config.yml from main

* Update to drop 3.6 and include 3.9

* Drop 3.6 and add 3.9

* Remove 3.6 build
  • Loading branch information
antonymilne authored Dec 17, 2021
1 parent 50730ab commit 35e78cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ workflows:
- build_kedro:
matrix:
parameters:
python_version: ["3.6", "3.7", "3.8"]
python_version: ["3.7", "3.8", "3.9"]
requires:
- build_docker_image

Expand All @@ -541,7 +541,7 @@ workflows:
- build_kedro:
matrix:
parameters:
python_version: ["3.6", "3.7", "3.8"]
python_version: ["3.7", "3.8", "3.9"]
- publish_kedro:
requires:
- build_kedro
7 changes: 3 additions & 4 deletions tools/circleci/docker_build_img/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ docker_push() {
main() {
local pip_reqs="$(get_pip_reqs $KEDRO_REPO)"

# Image for python 3.6
docker_build "$pip_reqs" 3.6
docker_push 3.6

# Image for python 3.7
docker_build "$pip_reqs" 3.7
docker_push 3.7
Expand All @@ -43,6 +39,9 @@ main() {
docker_build "$pip_reqs" 3.8
docker_push 3.8

# Image for python 3.9
docker_build "$pip_reqs" 3.9
docker_push 3.9
}

main

0 comments on commit 35e78cc

Please sign in to comment.