Skip to content

Commit e098b8e

Browse files
authored
Fix Makefile CI
1 parent 65147fc commit e098b8e

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/make.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,20 @@ on:
88

99
jobs:
1010
build:
11+
strategy:
12+
matrix:
13+
os: [ubuntu-latest, windows-latest, macOS-latest]
14+
dc: [dmd-latest, ldc-latest, dmd-2.085.0, ldc-1.17.0]
15+
exclude:
16+
- { os: macOS-latest, dc: dmd-2.085.0 }
1117

12-
runs-on: ubuntu-latest
13-
18+
runs-on: ${{ matrix.os }}
1419
steps:
1520
- uses: actions/checkout@v2
16-
- uses: dlang-community/setup-dlang@4c99aa991ce7d19dd3064de0a4f2f6b2f152e2d7
21+
- name: Install D compiler
22+
uses: dlang-community/setup-dlang@v1
23+
with:
24+
compiler: ${{ matrix.dc }}
1725
- name: make tree-query
1826
run: make
1927
- name: make tree-query-build

0 commit comments

Comments
 (0)