Skip to content

Commit

Permalink
Fix CI for win x86
Browse files Browse the repository at this point in the history
  • Loading branch information
Temtaime committed Mar 7, 2021
1 parent 70f8a1f commit a7fe85a
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@ jobs:
strategy:
fail-fast: false
matrix:
arch: [ x86, x64 ]
os: [ ubuntu-20.04, windows-latest ]
exclude:
include:
- arch: x86
dub_arch: x86
os: windows-latest

- arch: x64
dub_arch: x86_64
os: windows-latest

- arch: x64
dub_arch: x86_64
os: ubuntu-20.04

runs-on: ${{ matrix.os }}
Expand All @@ -30,4 +37,4 @@ jobs:
compiler: ldc-latest

- run: |
dub test -b unittest
dub test -b unittest -a ${{ matrix.dub_arch }}

0 comments on commit a7fe85a

Please sign in to comment.