Skip to content

Commit

Permalink
ci: Fix build library
Browse files Browse the repository at this point in the history
  • Loading branch information
dd86k committed May 23, 2024
1 parent 9107ad8 commit b12ee12
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,17 @@ jobs:
compiler: ${{ matrix.dc }}
- name: Test Alicedump
run: dub test -c dumper
Library:
Simple:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022 ]
dc: [ dmd-latest, ldc-latest ]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dlang-community/setup-dlang@v1
- name: Build Library
- name: Build Simple
run: dub build -c simple
Shared:
Library:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022 ]
Expand All @@ -53,15 +52,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dlang-community/setup-dlang@v1
- name: Build Shared Library
run: dub build -c shared
Simple:
- name: Build Library
run: dub build -c library
Shared:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
os: [ ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022 ]
dc: [ dmd-latest, ldc-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dlang-community/setup-dlang@v1
- name: Build Simple
run: dub build -c simple
- name: Build Shared Library
run: dub build -c shared

0 comments on commit b12ee12

Please sign in to comment.