build: improved Makefile #562
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: tox | |
on: push | |
jobs: | |
# Adapted from https://github.com/marketplace/actions/skip-duplicate-actions | |
pre_job: | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
# https://github.com/marketplace/actions/skip-duplicate-actions#skip-concurrent-workflow-runs | |
concurrent_skipping: "same_content_newer" | |
# https://github.com/marketplace/actions/skip-duplicate-actions#cancel_others | |
# Don't cancel other jobs, they might be pushes to master | |
cancel_others: false | |
# https://github.com/marketplace/actions/skip-duplicate-actions#do_not_skip | |
do_not_skip: '["workflow_dispatch", "schedule", "merge_group", "release"]' | |
# https://github.com/marketplace/actions/skip-duplicate-actions#paths | |
paths: '["go.*", "*.go", "cmd/**", "Cargo.*", "pyproject.toml", "python/**", "rust/**"]' | |
test: | |
needs: pre_job | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- name: "docs" | |
python: "3.10" | |
toxpython: "python3.10" | |
tox_env: "docs" | |
os: "ubuntu-latest" | |
- name: "py39 (ubuntu) + coverage" | |
python: "3.9" | |
toxpython: "python3.9" | |
python_arch: "x64" | |
tox_env: "clean,py39,report" | |
os: "ubuntu-latest" | |
codecov: true | |
# - name: 'py39 (windows)' | |
# python: '3.9' | |
# toxpython: 'python3.9' | |
# python_arch: 'x64' | |
# tox_env: 'py39' | |
# os: 'windows-latest' | |
- name: "py310 (ubuntu)" | |
python: "3.10" | |
toxpython: "python3.10" | |
python_arch: "x64" | |
tox_env: "py310" | |
os: "ubuntu-latest" | |
# TODO: tests are failing on Windows because of line breaks | |
# - name: 'py310 (windows)' | |
# python: '3.10' | |
# toxpython: 'python3.10' | |
# python_arch: 'x64' | |
# tox_env: 'py310' | |
# os: 'windows-latest' | |
- name: "py311 (ubuntu)" | |
python: "3.11" | |
toxpython: "python3.11" | |
python_arch: "x64" | |
tox_env: "py311" | |
os: "ubuntu-latest" | |
# - name: 'py311 (windows)' | |
# python: '3.11' | |
# toxpython: 'python3.11' | |
# python_arch: 'x64' | |
# tox_env: 'py311' | |
# os: 'windows-latest' | |
- name: "py311 (macos)" | |
python: "3.11" | |
toxpython: "python3.11" | |
python_arch: "x64" | |
tox_env: "py311" | |
os: "macos-latest" | |
- name: "py312 (ubuntu)" | |
python: "3.12" | |
toxpython: "python3.12" | |
python_arch: "x64" | |
tox_env: "py312" | |
os: "ubuntu-latest" | |
# - name: 'py312 (windows)' | |
# python: '3.12' | |
# toxpython: 'python3.12' | |
# python_arch: 'x64' | |
# tox_env: 'py312' | |
# os: 'windows-latest' | |
- name: "py312 (macos)" | |
python: "3.12" | |
toxpython: "python3.12" | |
python_arch: "x64" | |
tox_env: "py312" | |
os: "macos-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov }} | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov }} | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: ${{ matrix.python_arch }} | |
- name: install dependencies | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov }} | |
run: | | |
python -mpip install --progress-bar=off -r ci/requirements.txt | |
virtualenv --version | |
pip --version | |
tox --version | |
pip list --format=freeze | |
# Thanks to https://github.com/lsst-sqre/safir/blob/master/.github/workflows/ci.yaml | |
- name: Cache tox environments | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov }} | |
id: cache-tox | |
uses: actions/cache@v4 | |
with: | |
path: .tox | |
# These files have versioning info that would impact the tox environment | |
key: tox-${{ matrix.python }}-${{ hashFiles('pyproject.toml', 'tox.ini') }} | |
- name: test | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov }} | |
env: | |
TOXPYTHON: "${{ matrix.toxpython }}" | |
run: > | |
tox -e ${{ matrix.tox_env }} -v | |
- name: Upload coverage to CodeCov | |
uses: codecov/codecov-action@v5 | |
if: ${{ matrix.codecov }} | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true |