Skip to content

Commit

Permalink
Update docker container for CI
Browse files Browse the repository at this point in the history
Update circleci docker container with python 3.7 removed
and python 3.12 added

depends on Sceptre/sceptre-circleci#19
  • Loading branch information
zaro0508 committed Nov 28, 2023
1 parent 1ad3f30 commit cd658af
Show file tree
Hide file tree
Showing 5 changed files with 389 additions and 331 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ executors:
aliases:
- &docs-job
docker:
- image: sceptreorg/sceptre-circleci:2.0.0
- image: sceptreorg/sceptre-circleci:2.1.0
environment:
REPOSITORY_PATH: '/home/circleci/docs'
DEPLOYMENT_GIT_SSH: '[email protected]:Sceptre/sceptre.github.io.git'
Expand All @@ -34,7 +34,7 @@ aliases:
jobs:
build:
docker:
- image: sceptreorg/sceptre-circleci:2.0.0
- image: sceptreorg/sceptre-circleci:2.1.0
steps:
- checkout
- restore_cache:
Expand All @@ -57,7 +57,7 @@ jobs:

unit-tests:
docker:
- image: sceptreorg/sceptre-circleci:2.0.0
- image: sceptreorg/sceptre-circleci:2.1.0
steps:
- checkout
- restore_cache:
Expand All @@ -83,7 +83,7 @@ jobs:
integration-tests:
parallelism: 2
docker:
- image: sceptreorg/sceptre-circleci:2.0.0
- image: sceptreorg/sceptre-circleci:2.1.0
environment:
AWS_DEFAULT_REGION: eu-west-1
steps:
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:

deploy-pypi-test:
docker:
- image: sceptreorg/sceptre-circleci:2.0.0
- image: sceptreorg/sceptre-circleci:2.1.0
steps:
- checkout
- restore_cache:
Expand All @@ -143,7 +143,7 @@ jobs:
deploy-pypi-prod:
docker:
- image: sceptreorg/sceptre-circleci:2.0.0
- image: sceptreorg/sceptre-circleci:2.1.0
steps:
- checkout
- restore_cache:
Expand Down
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ max-complexity = 12
per-file-ignores =
docs/_api/conf.py: E265
integration-tests/steps/*: E501,F811,F403,F405
extend-ignore = E203
extend-ignore = E201,E202,E203,E231
max-line-length = 120
Loading

0 comments on commit cd658af

Please sign in to comment.