Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AWS CodeBuild CI | |
on: | |
pull_request: | |
push: | |
# Run once a day | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
codebuild-tests: | |
name: AWS CodeBuild CI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- python_version: "38" | |
image: "aws/codebuild/standard:5.0" | |
- python_version: "39" | |
image: "aws/codebuild/standard:5.0" | |
- python_version: "310" | |
image: "aws/codebuild/standard:6.0" | |
- python_version: "311" | |
image: "aws/codebuild/standard:7.0" | |
- python_version: "312" | |
image: "aws/codebuild/standard:7.0" | |
codebuild_file_name: | |
- "awses_local.yml" | |
- "examples.yml" | |
- "integ.yml" | |
exclude: | |
# (Nested `exclude` syntax is weird: https://github.com/actions/runner/issues/1512) | |
# No "awses_local.yml" file exists in py39/ | |
- { python: { | |
python_version: "39", | |
image: "aws/codebuild/standard:5.0" }, | |
codebuild_file_name: "awses_local.yml" | |
} | |
steps: | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }} | |
aws-region: us-west-2 | |
role-duration-seconds: 3600 | |
- name: Run python-${{ matrix.python.python_version }} ${{ matrix.codebuild_file_name }} | |
uses: aws-actions/aws-codebuild-run-build@v1 | |
timeout-minutes: 60 | |
with: | |
project-name: python-esdk | |
buildspec-override: codebuild/py${{ matrix.python.python_version }}/${{ matrix.codebuild_file_name }} | |
image-override: ${{ matrix.python.image }} |