Skip to content

Commit

Permalink
Merge pull request #6560 from commercialhaskell/ci-macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
mpilgrem committed Apr 26, 2024
2 parents 4945928 + 637aeea commit 90fd222
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
- os: windows-latest
release-args: ""
cache-bust: "2024-01-20"
- os: macos-latest
- os: macos-12
release-args: ""
cache-bust: "2024-01-20"
# macos-14 provides macOS/AArch64 (M1)
- os: macos-14
# macos-latest provides macOS/AArch64 (M1)
- os: macos-latest
release-args: ""
cache-bust: "2024-02-02"
steps:
Expand All @@ -67,9 +67,9 @@ jobs:
run: |
set -ex
if [[ "${{ matrix.os }}" == "macos-14" ]]
if [[ "${{ matrix.os }}" == "macos-latest" ]]
then
# macos-14 does not include Haskell tools as at 2024-02-02.
# macos-latest does not include Haskell tools as at 2024-04-25.
curl -sSL https://get.haskellstack.org/ | sh
fi
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ jobs:
run: |
set -ex
if [[ "${{ matrix.os }}" == "macos-latest" ]]
then
# macos-latest does not include Haskell tools as at 2024-04-25.
curl -sSL https://get.haskellstack.org/ | sh
fi
if [[ "${{ matrix.extra-suffix }}" == "alpine" ]]
then
mkdir -p ~/.stack
Expand Down

0 comments on commit 90fd222

Please sign in to comment.