Add versioned Python images for Python versions 3.8-3.12 #94
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 all images | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: "build-${{ matrix.img }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
img: | |
- full | |
- customizable | |
- nodejs | |
- jruby94 | |
- jruby93 | |
# - ruby34 # REL: 2024-12-25 | |
- ruby33 # EOL: 2027-03-31 | |
- ruby32 # EOL: 2026-03-31 | |
- ruby31 # EOL: 2025-03-31 | |
- ruby30 # EOL: 2024-03-31 | |
# https://www.ruby-lang.org/en/downloads/branches/ | |
- python312 # EOL: 2028-10-02 | |
- python311 # EOL: 2027-10-24 | |
- python310 # EOL: 2026-10-04 | |
- python39 # EOL: 2025-10-05 | |
- python38 # EOL: 2024-10-14 | |
# https://devguide.python.org/versions/ | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Purge containers | |
run: 'docker kill $(docker ps -q) || exit 0' | |
- name: Enable docker multiarch | |
run: 'docker run --privileged --rm tonistiigi/binfmt --install all' | |
- name: "Run make build_${{ matrix.img }}" | |
run: "make build_${{ matrix.img }}" | |
- name: Log in to the Container registry | |
if: ${{ github.event.pull_request.merged || github.actor == 'CamJN' }} | |
uses: docker/login-action@v3 | |
id: login | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push to github container registry | |
if: ${{ success() && steps.login.conclusion != 'skipped' }} | |
run: "make release_${{ matrix.img }}" |