Skip to content

Commit

Permalink
normalize macos ci os name
Browse files Browse the repository at this point in the history
  • Loading branch information
emilypi committed May 23, 2024
1 parent c14c555 commit 43eb396
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
ghc: ['9.6']
cabal: ['3.10']
os: ['ubuntu-20.04', 'ubuntu-22.04', 'macOS-latest', 'macos-14']
os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-latest', 'macos-14']
cabalcache: ['true']
flags: ['+build-tool']
include:
Expand Down Expand Up @@ -157,11 +157,11 @@ jobs:
shell: bash
run: cabal build
- name: Test - non-ARM
if: ! startsWith(matrix.os, 'macos')
if: "!startsWith(matrix.os, 'macos-')"
shell: bash
run: cabal run tests
- name: Tests - ARM
if: startsWith(matrix.os, 'macos') # latest + 14 no bignum regression
- name: Test - ARM
if: "startsWith(matrix.os, 'macos-')"
shell: bash
run: cabal run tests -- --skip "/PactTestsSpec/pact tests/tests/pact/ops.repl/"
- name: Benchmark
Expand Down

0 comments on commit 43eb396

Please sign in to comment.