File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 10
10
jobs :
11
11
# Make sure the latest versions of dub and ldc work on all platforms
12
12
build-latest :
13
- name : ${{ matrix.compiler }} on ${{ matrix.os }}
13
+ name : ${{ matrix.dc }} on ${{ matrix.os }}
14
14
runs-on : ${{ matrix.os }}
15
15
strategy :
16
16
fail-fast : false
17
17
matrix :
18
- os : [ ubuntu-latest, windows-latest, macos-latest ]
19
- compiler :
18
+ os : [ ubuntu-latest, windows-latest ]
19
+ dc :
20
20
- dmd-latest
21
21
- ldc-latest
22
22
- dmd-2.096.1
@@ -44,13 +44,16 @@ jobs:
44
44
# - ldc-1.17.0 # eq to dmd v2.087
45
45
# - ldc-1.16.0 # eq to dmd v2.086.1
46
46
- ldc-1.15.0 # eq to dmd v2.085.1
47
+ include :
48
+ - { os: macos-latest, dc: dmd-latest }
49
+ - { os: macos-latest, dc: ldc-latest }
47
50
steps :
48
51
- uses : actions/checkout@v2
49
52
50
- - name : Install D ${{ matrix.compiler }}
53
+ - name : Install D ${{ matrix.dc }}
51
54
uses : dlang-community/setup-dlang@v1
52
55
with :
53
- compiler : ${{ matrix.compiler }}
56
+ compiler : ${{ matrix.dc }}
54
57
55
58
- name : Dub Build
56
59
env :
You can’t perform that action at this time.
0 commit comments