Skip to content

Commit

Permalink
Update macOS test targets (JuliaMath#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimikage committed Apr 30, 2024
1 parent ed11950 commit cbe1d95
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/UnitTest.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Unit test

on:
create:
tags:
push:
branches:
- master
- release-*
tags: ['*']
pull_request:

jobs:
Expand All @@ -14,14 +14,19 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1.0', '1', '1.6', 'nightly']
os: [ubuntu-latest, windows-latest, macOS-latest]
julia-version: ['1.0', '1.6', '1', 'nightly']
os: [ubuntu-latest, windows-latest, macos-13]
julia-arch: [x64]
# only test one 32-bit job
include:
- os: ubuntu-latest
- os: ubuntu-latest # only test one 32-bit job
julia-version: '1'
julia-arch: x86
- os: macos-latest
julia-version: '1'
julia-arch: aarch64
- os: macos-latest
julia-version: 'nightly'
julia-arch: aarch64

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/UnitTestArm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1.0', '1', '1.6', 'nightly']
julia-version: ['1.0', '1.6', '1', 'nightly']
os: [ubuntu-latest]
distro: [ubuntu_latest]
arch: [aarch64]
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
tar -xf /tmp/julia-aarch64.tar.gz --strip-components=1 -C /home/runner/work/julia/
rm /tmp/julia-aarch64.tar.gz
- uses: uraimo/[email protected].1
- uses: uraimo/[email protected].2
name: Unit Test
with:
arch: ${{ matrix.arch }}
Expand Down

0 comments on commit cbe1d95

Please sign in to comment.