arm64 runner added

This commit is contained in:
Nicolas 2025-11-03 16:30:44 +01:00
parent 1c7ce32108
commit f64615d413
1 changed files with 33 additions and 0 deletions

View File

@ -116,6 +116,39 @@ jobs:
name: runner-linux name: runner-linux
path: bin/* path: bin/*
build-arm64:
needs: [build_stencils]
runs-on: ubuntu-22.04-arm64
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Check out code
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: stencil-object-files
path: src/copapy/obj
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: python -m pip install -e .[dev]
- name: Compile coparun
run: |
mkdir -p bin
gcc -O3 -DENABLE_BASIC_LOGGING -o bin/coparun src/coparun/runmem.c src/coparun/coparun.c src/coparun/mem_man.c
- name: Run tests with pytest
run: pytest
build-windows: build-windows:
needs: [build_stencils] needs: [build_stencils]
runs-on: windows-latest runs-on: windows-latest