We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d11ed40 commit f696cb6Copy full SHA for f696cb6
.github/workflows/ci_codebuild-tests.yml
@@ -18,11 +18,16 @@ jobs:
18
strategy:
19
matrix:
20
python:
21
- - "38"
22
- - "39"
23
- - "310"
24
- - "311"
25
- - "312"
+ - python_version: "38"
+ image: "aws/codebuild/standard:5.0"
+ - python_version: "39"
+ - python_version: "310"
26
+ image: "aws/codebuild/standard:6.0"
27
+ - python_version: "311"
28
+ image: "aws/codebuild/standard:7.0"
29
+ - python_version: "312"
30
31
codebuild_file_name:
32
- "awses_local.yml"
33
- "examples.yml"
@@ -44,3 +49,4 @@ jobs:
44
49
with:
45
50
project-name: python-esdk
46
51
buildspec-override: codebuild/py${{ matrix.python }}/${{ matrix.codebuild_file_name }}
52
+ image-override: ${{ matrix.platform.image }}
0 commit comments