Skip to content

Commit ca9783f

Browse files
authored
Update make.yml
1 parent 0f095e0 commit ca9783f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/make.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
os: [ubuntu-latest, windows-latest, macOS-latest]
13+
os: [ubuntu-latest, macOS-latest]
1414
dc: [dmd-latest, ldc-latest, dmd-2.085.0, ldc-1.17.0]
1515
exclude:
1616
- { os: macOS-latest, dc: dmd-2.085.0 }
@@ -23,8 +23,8 @@ jobs:
2323
with:
2424
compiler: ${{ matrix.dc }}
2525
- name: make tree-query
26-
run: (dmd && make && echo "Built successfully with DMD Reference Compiler!") || true
26+
run: (which dmd && make && echo "Built successfully with DMD Reference Compiler!") || true
2727
- name: make tree-query-build
28-
run: (ldc2 && make tree-query-build && echo "Built successfully with LLVM D Compiler!") || true
28+
run: (which ldc2 && make tree-query-build && echo "Built successfully with LLVM D Compiler!") || true
2929
#- name: make distcheck
3030
# run: make distcheck

0 commit comments

Comments
 (0)