Skip to content

Commit

Permalink
fixed mac os arch warning in test actions
Browse files Browse the repository at this point in the history
  • Loading branch information
0815Creeper committed Dec 22, 2024
1 parent 404a6b3 commit 2da3b33
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/TestLTS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,16 @@ jobs:
fail-fast: false
matrix:
julia-version: ['lts']
julia-arch: [x64, x86]
julia-arch: [x64, x86, aarch64]
os: [ubuntu-latest, windows-latest, macOS-latest]
experimental: [false]
exclude:
- os: ubuntu-latest
julia-arch: aarch64
- os: windows-latest-latest
julia-arch: aarch64
- os: macOS-latest
julia-arch: x64
- os: macOS-latest
julia-arch: x86

Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/TestLatest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,16 @@ jobs:
fail-fast: false
matrix:
julia-version: ['1'] # "1" automatically expands to the latest stable 1.x release of Julia
julia-arch: [x64, x86]
julia-arch: [x64, x86, aarch64]
os: [ubuntu-latest, windows-latest, macOS-latest]
experimental: [false]
exclude:
- os: ubuntu-latest
julia-arch: aarch64
- os: windows-latest-latest
julia-arch: aarch64
- os: macOS-latest
julia-arch: x64
- os: macOS-latest
julia-arch: x86

Expand Down

0 comments on commit 2da3b33

Please sign in to comment.