We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b656bd6 commit 2730464Copy full SHA for 2730464
.github/workflows/main.yml
@@ -21,14 +21,16 @@ jobs:
21
runs-on: ${{ matrix.os }}
22
timeout-minutes: 10
23
env:
24
- DMD: ${{ startsWith(matrix.dc, 'ldc') && 'ldmd2' || 'dmd' }}
25
N: ${{ startsWith(matrix.os, 'macos') && '3' || '2' }}
26
steps:
27
- uses: actions/checkout@v4
28
- name: Install D compiler
29
- uses: dlang-community/setup-dlang@v1.3.0
+ uses: dlang-community/setup-dlang@v2
30
with:
31
compiler: ${{ matrix.dc }}
+ - name: Set DMD to its basename
32
+ run: |
33
+ tee -a ${GITHUB_ENV} <<<"DMD=$(basename "${DMD}")"
34
- name: Build
35
run: make -j$N DMD=$DMD
36
- name: Test
0 commit comments