-
Notifications
You must be signed in to change notification settings - Fork 11
48 lines (40 loc) · 1.39 KB
/
x86.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
name: x86
on: [push, pull_request]
jobs:
test:
name: Dub Tests
strategy:
matrix:
os: [windows-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
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 -a x86
- name: Unittest with unittest-release configuration
run: dub test -b unittest-release -a x86
- name: Unittest with unittest-inst configuration
run: dub test -b unittest-inst -a x86
- name: Unittest with unittest-release-inst configuration
run: dub test -b unittest-release-inst -a x86