chore: Update Python version for images that install SAM CLI from source #108
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: Build & Test | |
on: | |
pull_request: | |
branches: | |
- develop | |
- "feat*" | |
merge_group: | |
types: [checks_requested] | |
branches: | |
- develop | |
- "feat*" | |
jobs: | |
run-workflow: | |
name: Parent PR Status Check | |
if: always() | |
runs-on: ubuntu-latest | |
needs: | |
- build-single-arch | |
- build-multi-arch | |
steps: | |
- name: report-failure | |
if: | | |
needs.build-single-arch.result != 'success' || | |
needs.build-multi-arch.result != 'success' | |
run: exit 1 | |
- name: report-success | |
run: exit 0 | |
get-sam-cli-version: | |
runs-on: ubuntu-latest | |
outputs: | |
sam_cli_version: ${{ steps.sam_cli_version.outputs.sam_cli_version }} | |
steps: | |
- id: sam_cli_version | |
run: echo "sam_cli_version=$(curl -s https://pypi.org/pypi/aws-sam-cli/json | jq -r .info.version)" >> $GITHUB_OUTPUT | |
build-single-arch: | |
strategy: | |
fail-fast: false | |
matrix: | |
runtime: | |
- "java8" | |
- "provided" | |
- "python37" | |
- "go1x" | |
runs-on: ubuntu-latest | |
needs: [get-sam-cli-version] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- run: make init | |
- run: SAM_CLI_VERSION=${{needs.get-sam-cli-version.outputs.sam_cli_version}} RUNTIME=${{matrix.runtime}} make build-single-arch | |
- run: SAM_CLI_VERSION=${{needs.get-sam-cli-version.outputs.sam_cli_version}} RUNTIME=${{matrix.runtime}} make test | |
build-multi-arch: | |
strategy: | |
fail-fast: false | |
matrix: | |
runtime: | |
- "dotnet6" | |
- "dotnet7" | |
- "java8_al2" | |
- "java11" | |
- "java17" | |
- "nodejs12x" | |
- "nodejs14x" | |
- "nodejs16x" | |
- "nodejs18x" | |
- "provided_al2" | |
- "python38" | |
- "python39" | |
- "python310" | |
- "python311" | |
- "ruby27" | |
- "ruby32" | |
runs-on: ubuntu-latest | |
needs: [get-sam-cli-version] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- run: make init | |
- run: SAM_CLI_VERSION=${{needs.get-sam-cli-version.outputs.sam_cli_version}} RUNTIME=${{matrix.runtime}} make build-multi-arch | |
- run: SAM_CLI_VERSION=${{needs.get-sam-cli-version.outputs.sam_cli_version}} RUNTIME=${{matrix.runtime}} make test |