From dfb70f473d678a6caffbc52a048588791eb1e7df Mon Sep 17 00:00:00 2001 From: KtorZ Date: Sat, 23 Nov 2024 17:36:41 +0100 Subject: [PATCH] simply use buildjet all the way... --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8fb87a3..3a0b256 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,11 +17,11 @@ jobs: os: [ linux ] arch: [ x86_64, aarch64 ] compiler: [ ghc948 ] - # exclude: - # - os: macos - # arch: x86_64 + exclude: + - os: macos + arch: x86_64 - 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') }} steps: - name: 📥 Checkout repository