A bit better LDC debug performance for text-mode #671
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |