-
Notifications
You must be signed in to change notification settings - Fork 33
ci: update ci build matrix #316
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
base: master
Are you sure you want to change the base?
Changes from 6 commits
e5600aa
097574e
f1ca5b7
48a549a
02db748
17db74c
b10b430
fa51559
d46b83e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,22 +9,38 @@ on: | |||||||||||||||||
| pull_request: | ||||||||||||||||||
| workflow_dispatch: | ||||||||||||||||||
|
|
||||||||||||||||||
| concurrency: | ||||||||||||||||||
| # Skip intermediate builds: always. | ||||||||||||||||||
| # Cancel intermediate builds: only if it is a pull request build. | ||||||||||||||||||
| group: ${{ github.workflow }}-${{ github.ref }} | ||||||||||||||||||
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | ||||||||||||||||||
|
|
||||||||||||||||||
| jobs: | ||||||||||||||||||
| test: | ||||||||||||||||||
| name: Julia v${{ matrix.julia-version }}-${{ matrix.julia-arch }} - ${{ matrix.os }} | ||||||||||||||||||
| runs-on: ${{ matrix.os }} | ||||||||||||||||||
| permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created | ||||||||||||||||||
| actions: write | ||||||||||||||||||
| contents: read | ||||||||||||||||||
| strategy: | ||||||||||||||||||
| fail-fast: false | ||||||||||||||||||
| matrix: | ||||||||||||||||||
| julia-version: ['1.6', '1'] | ||||||||||||||||||
| os: [ubuntu-latest, windows-latest, macos-13] | ||||||||||||||||||
| julia-version: ['lts', '1'] | ||||||||||||||||||
|
||||||||||||||||||
| os: [ubuntu-latest, windows-latest, macos-15-intel] | ||||||||||||||||||
|
||||||||||||||||||
| os: [ubuntu-latest, windows-latest, macos-15-intel] | |
| os: [ubuntu-latest, windows-latest, macos-13] |
Outdated
Copilot
AI
Dec 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The runner name 'ubuntu-24.04-arm' does not appear to be a standard GitHub-hosted runner. GitHub does not currently provide ARM-based Ubuntu runners as standard hosted runners. If ARM testing on Ubuntu is required, you would typically need to use self-hosted runners or alternative solutions. Consider using 'ubuntu-latest' with emulation (via setup-julia's arch parameter), or set up self-hosted ARM runners. If this is intended to be a self-hosted runner, ensure it's properly configured in your repository settings.
| - os: ubuntu-24.04-arm | |
| julia-version: 'lts' | |
| julia-arch: aarch64 | |
| - os: ubuntu-24.04-arm | |
| - os: ubuntu-latest | |
| julia-version: 'lts' | |
| julia-arch: aarch64 | |
| - os: ubuntu-latest |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.