✨ Add support for multi-arch builds, including support for arm64
(e.g. Mac M1)
#429
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
schedule: | |
# cron every week on monday | |
- cron: "0 0 * * 1" | |
jobs: | |
build: | |
strategy: | |
matrix: | |
image: | |
- name: latest | |
python_version: "3.11" | |
- name: python3.11 | |
python_version: "3.11" | |
- name: python3.10 | |
python_version: "3.10" | |
- name: python3.9 | |
python_version: "3.9" | |
- name: python3.8 | |
python_version: "3.8" | |
- name: python3.7 | |
python_version: "3.7" | |
- name: python3.11-slim | |
python_version: "3.11" | |
- name: python3.10-slim | |
python_version: "3.10" | |
- name: python3.9-slim | |
python_version: "3.9" | |
- name: python3.8-slim | |
python_version: "3.8" | |
fail-fast: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Build | |
if: matrix.image.name != 'latest' | |
uses: docker/build-push-action@v2 | |
with: | |
push: false | |
tags: tiangolo/uvicorn-gunicorn:${{ matrix.image.name }} | |
context: ./docker-images/ | |
file: ./docker-images/${{ matrix.image.name }}.dockerfile | |
- name: Build latest | |
if: matrix.image.name == 'latest' | |
uses: docker/build-push-action@v2 | |
with: | |
push: false | |
tags: tiangolo/uvicorn-gunicorn:latest | |
context: ./docker-images/ | |
file: ./docker-images/python${{ matrix.image.python_version }}.dockerfile | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: python -m pip install docker pytest | |
- name: Test Image | |
if: matrix.image.name != 'latest' | |
run: bash scripts/test.sh | |
env: | |
NAME: ${{ matrix.image.name }} | |
PYTHON_VERSION: ${{ matrix.image.python_version }} | |
- name: Test Image latest | |
if: matrix.image.name == 'latest' | |
run: bash scripts/test.sh | |
env: | |
NAME: latest | |
PYTHON_VERSION: ${{ matrix.image.python_version }} | |
check: | |
if: always() | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |