WIP: CI: Build and show dist #120
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, build, publish | |
# Run tests (all branches), | |
# for tags build wheels, publish wheels to PyPI and Github Releases. | |
on: [push, pull_request] | |
jobs: | |
run-tests: | |
env: | |
not_in_conda: "[]" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.7"] | |
include: | |
- os: ubuntu-latest | |
os-name: Linux | |
pip-cache-path: ~/.cache/pip | |
name: Python ${{ matrix.python-version }} @ ${{ matrix.os-name }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build on Linux/aarch64 | |
uses: uraimo/run-on-arch-action@v2 | |
with: | |
arch: aarch64 | |
distro: ubuntu22.04 | |
env: | | |
PY_VER: ${{ matrix.python-version }} | |
RUNNER_OS: ${{ runner.os }} | |
install: | | |
set -ex | |
apt-get update -q -y | |
apt-get install -q -y curl | |
run: | | |
set -ex | |
curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" | |
bash Miniforge3-$(uname)-$(uname -m).sh -b -u -p "$HOME"/miniforge3 | |
source "$HOME"/miniforge3/etc/profile.d/conda.sh | |
#conda update -n base -c conda-forge --yes conda | |
case $PY_VER in | |
pypy*) conda create -n $PY_VER --yes $PY_VER ;; | |
*) conda create -n $PY_VER --yes python=$PY_VER ;; | |
esac | |
conda activate $PY_VER | |
python --version | |
pip --version | |
exec devscripts/CI/ghactions-release | |
if: ${{ runner.os == 'Linux' }} |