Speed up pyarts startup when all you need is XYZ (#908) #2028
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: Deploy | |
on: [push] | |
jobs: | |
publish: | |
if: ${{ false }} # Disable action, manylinux only provideds GCC 10 which is insufficient for ARTS | |
#if: github.repository == 'atmtools/arts' | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
name: [ | |
linux-python38, | |
linux-python39, | |
linux-python310 | |
] | |
include: | |
- name: linux-python38 | |
os: ubuntu-20.04 | |
python_version: cp38-cp38 | |
- name: linux-python39 | |
os: ubuntu-20.04 | |
python_version: cp39-cp39 | |
- name: linux-python310 | |
os: ubuntu-20.04 | |
python_version: cp310-cp310 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.ref }} | |
- name: PyPI release (Linux) | |
if: runner.os == 'Linux' | |
continue-on-error: true | |
uses: ./actions/pypi | |
with: | |
pypi_access: ${{ secrets.pypi_access }} | |
python_version: ${{ matrix.python_version }} | |