Skip to content

Commit

Permalink
Merge pull request #48 from williamfgc/ci-cpu-upgrade
Browse files Browse the repository at this point in the history
Upgrade GA CPU CI
  • Loading branch information
williamfgc authored Feb 29, 2024
2 parents 2deecc2 + 98a4cc6 commit b29182a
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci-cpu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout Action
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Instantiate
run: julia --project -e 'using Pkg; Pkg.instantiate();'
Expand All @@ -27,18 +27,24 @@ jobs:
run: julia -t 4 --project -e 'using Pkg; Pkg.test()'

macos:
runs-on: macos-latest
runs-on: macos-13
strategy:
fail-fast: false
matrix:
jobname: [JACC-threads]

steps:
- name: Checkout Action
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install julia
run: |
brew update
brew install julia
julia --version
- name: Instantiate
run: julia --project -e 'using Pkg; Pkg.instantiate();'

- name: Test Threads
run: julia -t 3 --project -e 'using Pkg; Pkg.test()'
run: julia -t 4 --project -e 'using Pkg; Pkg.test()'

0 comments on commit b29182a

Please sign in to comment.