Skip to content

Commit

Permalink
Fix GHA CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed May 31, 2024
1 parent 4fec13c commit eb1052f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ jobs:
env:
COVERAGE: true
run: |
dub build --compiler=${{ env.DC }}
dub build --compiler=$DC
if [[ ${{ matrix.do_test }} == 'true' ]]; then
dub run --compiler=${{ env.DC }} --single test/issue2051_running_unittests_from_dub_single_file_packages_fails.d
dub run --compiler=$DC --single test/issue2051_running_unittests_from_dub_single_file_packages_fails.d
./scripts/ci/ci.sh
fi
Expand All @@ -113,10 +113,10 @@ jobs:
env:
DUB: ${{ github.workspace }}\bin\dub.exe
run: |
dub build --compiler=${{ env.DC }}
dub build --compiler=$DC
if [[ ${{ matrix.do_test }} == 'true' ]]; then
dub test --compiler=${{ env.DC }}
dub run --compiler=${{ env.DC }} --single test/issue2051_running_unittests_from_dub_single_file_packages_fails.d
dub test --compiler=$DC
dub run --compiler=$DC --single test/issue2051_running_unittests_from_dub_single_file_packages_fails.d
dub --single test/run-unittest.d
# FIXME: DMD fails a few tests on Windows; remove them for now
Expand Down

0 comments on commit eb1052f

Please sign in to comment.