File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
build :
11
11
strategy :
12
12
matrix :
13
- os : [ubuntu-latest, windows-latest, macOS-latest]
13
+ os : [ubuntu-latest, macOS-latest]
14
14
dc : [dmd-latest, ldc-latest, dmd-2.085.0, ldc-1.17.0]
15
15
exclude :
16
16
- { os: macOS-latest, dc: dmd-2.085.0 }
23
23
with :
24
24
compiler : ${{ matrix.dc }}
25
25
- 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
27
27
- 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
29
29
# - name: make distcheck
30
30
# run: make distcheck
You can’t perform that action at this time.
0 commit comments