From fbf7842c699e8361d2cecb1a95261c68bd6445f8 Mon Sep 17 00:00:00 2001 From: Dragos Carp Date: Sun, 21 Sep 2025 01:46:23 +0200 Subject: [PATCH] fix(ci): Don't use DMD on macOS ARM runners --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a08929f..da9458f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,6 +9,9 @@ jobs: matrix: os: [ ubuntu-latest, macos-latest, windows-latest ] dc: [ dmd-latest, ldc-latest ] + exclude: + - os: macos-latest + dc: dmd-latest # dmd is not available on macOS ARM runners runs-on: ${{ matrix.os }} timeout-minutes: 30