Skip to content

Commit

Permalink
CI: Add static library and shared library builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dd86k committed May 10, 2024
1 parent d681567 commit ab210d8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,28 @@ jobs:
compiler: ${{ matrix.dc }}
- name: Test Alicedump
run: dub test -c dumper
Library:
strategy:
matrix:
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 Library
run: dub build -c simple
Shared:
strategy:
matrix:
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 Shared Library
run: dub build -c shared
Simple:
strategy:
matrix:
Expand Down

0 comments on commit ab210d8

Please sign in to comment.