Skip to content
Open
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
30 changes: 22 additions & 8 deletions .github/workflows/UnitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ${{ 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]
# tier 1: ubuntu-[x86|x64], windows-[x86|x64], macos-[x64|aarch64]
# tier 2: ubuntu-arm-[aarch64]
julia-version: ['lts', '1']
os: [ubuntu-latest, windows-latest, macos-15-intel]
Copy link

Copilot AI Dec 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The runner name 'macos-15-intel' does not appear to be a valid GitHub-hosted runner. As of macOS 15, GitHub-hosted runners use ARM64 (Apple Silicon) architecture. For Intel-based macOS runners, you should use 'macos-13' which is the last Intel-based macOS runner provided by GitHub. If you need Intel testing on macOS, consider using 'macos-13', or if you want the latest macOS on ARM, use 'macos-latest' or 'macos-15'.

Suggested change
os: [ubuntu-latest, windows-latest, macos-15-intel]
os: [ubuntu-latest, windows-latest, macos-13]

Copilot uses AI. Check for mistakes.
julia-arch: [x64]
include:
- os: ubuntu-latest # only test one 32-bit job
julia-version: '1'
julia-arch: x86
- os: macos-latest
- os: ubuntu-24.04-arm
julia-version: '1'
julia-arch: aarch64
# macOS-aarch64 x ['lts', '1']
- os: macos-latest
julia-version: 'lts'
julia-arch: aarch64
- os: macos-latest
julia-version: '1'
julia-arch: aarch64
Expand All @@ -36,11 +52,9 @@ jobs:
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- name: Cache artifacts
uses: julia-actions/cache@v2
- name: "Unit Test"
uses: julia-actions/julia-runtest@v1

- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
Expand Down
76 changes: 0 additions & 76 deletions .github/workflows/UnitTestArm.yml

This file was deleted.

Loading