Skip to content

Try and debug cross-compilation on Linux systems #42

Try and debug cross-compilation on Linux systems

Try and debug cross-compilation on Linux systems #42

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 3
jobs:
build_macos_windows:
name: Wheels (${{ matrix.runs-on }} / Python ${{ matrix.python-version }})
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.12"]
runs-on: [macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Set up Go toolchain
uses: actions/setup-go@v5
with:
go-version: "1.21.x"
cache: false
check-latest: true
- name: Install MinGW on Windows
if: matrix.runs-on == 'windows-latest'
run: choco install mingw
- name: Install Python dependencies
run: python -m pip install build virtualenv nox
- name: Build binary distribution (wheel)
run: |
python -m build --wheel . --outdir wheelhouse/
- name: Test entry points for package
run: nox -s venv
build_linux:
name: Wheels (ubuntu-latest / Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.12"]
goarch: ["amd64", "arm64"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Set up Go toolchain
uses: actions/setup-go@v5
with:
go-version: "1.21.x"
cache: false
check-latest: true
- name: Install Python dependencies
run: python -m pip install build virtualenv nox
- name: Build binary distribution (wheel) for amd64
if: matrix.goarch == 'amd64'
run: |
python -m build --wheel . --outdir wheelhouse/
- name: Build binary distribution (wheel) for arm64
if: matrix.goarch == 'arm64'
env:
GOARCH: arm64
run: python -m build --wheel . --outdir wheelhouse/
- name: Test entry points for package
if: matrix.goarch == 'amd64'
run: nox -s venv