Skip to content

Commit 4615938

Browse files
committed
[CI] Run "optimized" unittests
1 parent c46c257 commit 4615938

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,22 @@ jobs:
2626
- dmd-2.085.1
2727
- dmd-2.090.1
2828
arch: [x86_64]
29+
buildType: [unittest]
2930
include:
3031
- os: windows-2019
3132
dc: dmd-latest
3233
arch: x86
3334
- os: windows-2019
3435
dc: ldc-latest
3536
arch: x86
37+
- os: ubuntu-20.04
38+
dc: dmd-latest
39+
arch: x86_64
40+
buildType: optimized-unittests
41+
- os: ubuntu-20.04
42+
dc: ldc-latest
43+
arch: x86_64
44+
buildType: optimized-unittests
3645
runs-on: ${{ matrix.os }}
3746
steps:
3847
- name: Checkout Repository
@@ -62,9 +71,9 @@ jobs:
6271
libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxrandr-dev \
6372
libxrender-dev libxtst-dev
6473
65-
- name: Test DWT Gtk
74+
- name: Test DWT Gtk (${{ matrix.buildType }})
6675
if: ${{ matrix.os == 'ubuntu-20.04' }}
6776
uses: GabrielBB/xvfb-action@v1 # X virtual framebuffer
6877
with:
6978
working-directory: ./
70-
run: dub test -c unittest-gtk
79+
run: dub test -c unittest-gtk -b ${{ matrix.buildType }}

0 commit comments

Comments
 (0)