Skip to content

Commit

Permalink
CI: Expand CI with Linux Arm runners
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Jan 28, 2025
1 parent ea61cb6 commit 52e7f6a
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ env:

jobs:
test_pywavelets_linux:
name: linux-cp${{ matrix.python-version }}-${{ matrix.OPTIONS_NAME }}
runs-on: ubuntu-latest
name: ${{ matrix.runs-on }}-cp${{ matrix.python-version }}-${{ matrix.OPTIONS_NAME }}
runs-on: ${{ matrix.runs-on }}
strategy:
# Ensure that a wheel builder finishes even if another fails
fail-fast: false
matrix:
runs-on: ["ubuntu-latest", "ubuntu-22.04-arm"]
python-version: ["3.10", "3.11", "3.12"]
MINIMUM_REQUIREMENTS: [0]
USE_SCIPY: [0]
Expand All @@ -41,24 +42,19 @@ jobs:
PIP_FLAGS: [""]
OPTIONS_NAME: ["default"]
include:
- platform_id: manylinux_x86_64
python-version: "3.10"
- python-version: "3.10"
MINIMUM_REQUIREMENTS: 1
OPTIONS_NAME: "minimum-req"
- platform_id: manylinux_x86_64
python-version: "3.10"
- python-version: "3.10"
USE_SCIPY: 1
OPTIONS_NAME: "with-scipy"
- platform_id: manylinux_x86_64
python-version: "3.10"
- python-version: "3.10"
USE_SDIST: 1
OPTIONS_NAME: "install-from-sdist"
- platform_id: manylinux_x86_64
python-version: "3.12"
- python-version: "3.12"
PIP_FLAGS: "--pre"
OPTIONS_NAME: "pre-releases"
- platform_id: manylinux_x86_64
python-version: "3.12"
- python-version: "3.12"
OPTIONS_NAME: "editable-install"
steps:
- name: Checkout PyWavelets
Expand Down

0 comments on commit 52e7f6a

Please sign in to comment.