We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5858d9d commit 145f81aCopy full SHA for 145f81a
.github/workflows/build.yaml
@@ -14,14 +14,14 @@ jobs:
14
build:
15
strategy:
16
matrix:
17
- os: [ linux ]
+ os: [ linux, macos ]
18
arch: [ x86_64, aarch64 ]
19
compiler: [ ghc948 ]
20
- # exclude:
21
- # - os: macos
22
- # arch: x86_64
+ exclude:
+ - os: macos
+ arch: x86_64
23
24
- runs-on: ${{ matrix.arch == 'x86_64' && 'custom-x86_64' || (matrix.os == 'linux' && 'buildjet-4vcpu-ubuntu-2204-arm' || 'macos-latest') }}
+ runs-on: ${{ matrix.arch == 'x86_64' && 'buildjet-4vcpu-ubuntu-2204' || (matrix.os == 'linux' && 'buildjet-4vcpu-ubuntu-2204-arm' || 'macos-latest') }}
25
steps:
26
27
- name: 📥 Checkout repository
0 commit comments