Skip to content

Commit

Permalink
CI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SingingBush committed Jun 10, 2021
1 parent dc9b994 commit 94c1907
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/dub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ on:
jobs:
# Make sure the latest versions of dub and ldc work on all platforms
build-latest:
name: ${{ matrix.compiler }} on ${{ matrix.os }}
name: ${{ matrix.dc }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
compiler:
os: [ ubuntu-latest, windows-latest ]
dc:
- dmd-latest
- ldc-latest
- dmd-2.096.1
Expand Down Expand Up @@ -44,13 +44,16 @@ jobs:
# - ldc-1.17.0 # eq to dmd v2.087
# - ldc-1.16.0 # eq to dmd v2.086.1
- ldc-1.15.0 # eq to dmd v2.085.1
include:
- { os: macos-latest, dc: dmd-latest }
- { os: macos-latest, dc: ldc-latest }
steps:
- uses: actions/checkout@v2

- name: Install D ${{ matrix.compiler }}
- name: Install D ${{ matrix.dc }}
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.compiler }}
compiler: ${{ matrix.dc }}

- name: Dub Build
env:
Expand Down

0 comments on commit 94c1907

Please sign in to comment.