Skip to content

Commit

Permalink
.github/workflows/test.yml: Bump DMD version
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberShadow committed Dec 28, 2024
1 parent 4b4d60f commit 97e95b4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, windows-2022, macos-15 ]
dc: [ dmd-2.100.0, ldc-1.32.2 ]
dc: [ dmd-2.107.1, ldc-1.32.2 ]
arch: [ x86_64 ]
include:
# also test an older DMD verrsion
Expand All @@ -22,7 +22,7 @@ jobs:
# Do not try to use DMD on Windows
# https://issues.dlang.org/show_bug.cgi?id=22044
- os: windows-2022
dc: dmd-2.100.0
dc: dmd-2.107.1

runs-on: ${{ matrix.os }}
steps:
Expand All @@ -44,18 +44,18 @@ jobs:
- if: ${{ matrix.os == 'ubuntu-20.04' }}
run: dub test --debug=ae_unittest --arch=${{ matrix.arch }} :sqlite

- if: ${{ matrix.os == 'ubuntu-20.04' && matrix.dc == 'dmd-2.100.0' }} # old Dub versions can't fetch packages
- if: ${{ matrix.os == 'ubuntu-20.04' && matrix.dc == 'dmd-2.107.1' }} # old Dub versions can't fetch packages
run: dub test --debug=ae_unittest --arch=${{ matrix.arch }} :libpng

- if: ${{ matrix.dc == 'dmd-2.100.0' }}
- if: ${{ matrix.dc == 'dmd-2.107.1' }}
run: dub test --debug=ae_unittest --arch=${{ matrix.arch }} :windows

compilation-test:
timeout-minutes: 5
strategy:
matrix:
os: [ ubuntu-20.04 ]
dc: [ dmd-2.100.0 ]
dc: [ dmd-2.107.1 ]

runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 97e95b4

Please sign in to comment.