Skip to content

CI: Test on Windows arm64 runners #3911

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
4 changes: 3 additions & 1 deletion .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.11', '3.13']
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest, windows-11-arm]
# Is it a draft Pull Request (true or false)?
isDraft:
- ${{ github.event.pull_request.draft }}
Expand All @@ -69,6 +69,8 @@ jobs:
isDraft: true
- os: windows-latest
isDraft: true
- os: windows-11-arm
isDraft: true
include:
# Python 3.11 + core packages (minimum supported versions) + optional packages (minimum supported versions if any)
- python-version: '3.11'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15, windows-2025]
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15, windows-2025, windows-11-arm]
gmt_git_ref: [master]
timeout-minutes: 30
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests_legacy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, ubuntu-22.04-arm, macos-13, windows-2019]
os: [ubuntu-22.04, ubuntu-22.04-arm, macos-13, windows-2019, windows-11-arm]
gmt_version: ['6.4']
timeout-minutes: 30
defaults:
Expand Down
4 changes: 2 additions & 2 deletions pygmt/tests/test_contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def fixture_region():


@pytest.mark.mpl_image_compare
@pytest.mark.xfail(platform.machine() == "aarch64", reason="Fails on Linux ARM64")
@pytest.mark.xfail(platform.machine() == "aarch64", reason="Fails on ARM64")
def test_contour_vec(region):
"""
Plot an x-centered gaussian kernel with different y scale.
Expand Down Expand Up @@ -132,7 +132,7 @@ def test_contour_multiple_levels(region):


@pytest.mark.mpl_image_compare(filename="test_contour_vec.png")
@pytest.mark.xfail(platform.machine() == "aarch64", reason="Fails on Linux ARM64")
@pytest.mark.xfail(platform.machine() == "aarch64", reason="Fails on ARM64")
def test_contour_incols_transposed_data(region):
"""
Make sure that transposing the data matrix still produces a correct result with
Expand Down
Loading