Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
check-version:
name: Check the tag corresponds to the crate version
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -50,15 +50,15 @@ jobs:
cibw_build: cp39-macosx_arm64
- os: windows-2019
cibw_build: cp39-win_amd64
- os: ubuntu-20.04
- os: ubuntu-24.04
cibw_build: cp39-manylinux_x86_64
- os: ubuntu-20.04
- os: ubuntu-24.04
cibw_build: cp39-musllinux_x86_64
- os: ubuntu-20.04
- os: ubuntu-24.04-arm
cibw_build: cp39-manylinux_aarch64
- os: ubuntu-20.04
- os: ubuntu-24.04
cibw_build: cp39-manylinux_ppc64le
- os: ubuntu-20.04
- os: ubuntu-24.04-arm
cibw_build: cp39-musllinux_aarch64

steps:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:

sdist:
name: Build source distribution
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

defaults:
run:
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
needs: publish

name: Publish light-curve-python
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

defaults:
run:
Expand Down
23 changes: 6 additions & 17 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,17 @@ jobs:


test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
python_minor: [ '9', '10', '11', '12', '13' ]
os: [ ubuntu-latest ]
# Just a single ARM worker to be sure that it works
include:
- python_minor: '13'
os: ubuntu-24.04-arm

defaults:
run:
Expand Down Expand Up @@ -212,19 +217,3 @@ jobs:
run: |
rustup default ${{ steps.get_msrv.outputs.msrv }}
maturin build --find-interpreter

arm:
runs-on: [ self-hosted, linux, ARM64 ]

needs: [ py_build_deps ]

defaults:
run:
working-directory: light-curve

steps:
- uses: actions/checkout@v4
- name: Install build_deps
run: pip install "${{ needs.py_build_deps.outputs.output }}"
- name: Build
run: maturin build
Loading