-
Notifications
You must be signed in to change notification settings - Fork 11
59 lines (51 loc) · 1.79 KB
/
x86_64.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: x86_64
on: [push, pull_request]
jobs:
test:
name: Dub Tests
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dc:
- dmd-latest
- dmd-2.097.0
- dmd-2.096.1
- dmd-2.095.1
- dmd-2.094.2
- ldc-latest
- ldc-1.33.0
- ldc-1.32.2
- ldc-1.31.0
- ldc-1.30.0
- ldc-1.29.0
- ldc-1.28.1
- ldc-1.27.1
- ldc-1.26.0
- ldc-1.25.1
- ldc-1.24.0
exclude:
- dc: dmd-latest
os: macOS-latest
- dc: dmd-2.097.0
os: macOS-latest
- dc: dmd-2.096.1
os: macOS-latest
- dc: dmd-2.095.1
os: macOS-latest
- dc: dmd-2.094.2
os: macOS-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install D compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
- name: Unittest with default configuration
run: dub test
- name: Unittest with unittest-release configuration
run: dub test -b unittest-release
- name: Unittest with unittest-inst configuration
run: dub test -b unittest-inst
- name: Unittest with unittest-release-inst configuration
run: dub test -b unittest-release-inst