Skip to content

Commit 04da94d

Browse files
committed
ci: Change setting to exclude DMD on macOS-latest
And a few minor fixes that are inconsequential.
1 parent ec4edb7 commit 04da94d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
name: "[${{ matrix.os }} | ${{ matrix.dc }}]"
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, windows-latest, macOS-latest]
15+
os: [ubuntu-latest, windows-latest]
1616
dc: [dmd-latest, ldc-latest]
17-
arch: [x86_64]
17+
include:
18+
# No support for Apple Silicon from DMD at this time
19+
- { os: macOS-latest, dc: ldc-latest }
1820
runs-on: ${{ matrix.os }}
1921
steps:
20-
- uses: actions/checkout@v3
21-
22+
- uses: actions/checkout@v4
2223
- name: Install D compiler
2324
uses: dlang-community/setup-dlang@v1
2425
with:
2526
compiler: ${{ matrix.dc }}
2627
- name: Run tests
2728
env:
2829
DC: ${{matrix.dc}}
29-
ARCH: ${{matrix.arch}}
3030
run: |
3131
dub test

0 commit comments

Comments
 (0)