File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -124,14 +124,14 @@ jobs:
124124 env :
125125 DUB : ${{ github.workspace }}\bin\dub.exe
126126 run : |
127- dub build --compiler=${{ env.DC }}
127+ dub build --compiler=' ${{ env.DC }}'
128128 if [[ ${{ matrix.do_test }} == 'true' ]]; then
129- dub test --compiler=${{ env.DC }}
130- dub run --compiler=${{ env.DC }} --single test/issue2051_running_unittests_from_dub_single_file_packages_fails.d
129+ dub test --compiler=' ${{ env.DC }}'
130+ dub run --compiler=' ${{ env.DC }}' --single test/issue2051_running_unittests_from_dub_single_file_packages_fails.d
131131 dub --single test/run-unittest.d
132132
133133 # FIXME: DMD fails a few tests on Windows; remove them for now
134- if [[ '${{ matrix.dc }}' = dmd* ]]; then
134+ if [[ '${{ matrix.dc }}' = * dmd* ]]; then
135135 # DLL support is lacking
136136 rm -rf test/{1-dynLib-simple,2-dynLib-dep,2-dynLib-with-staticLib-dep}
137137 # Unicode in paths too
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -ueo pipefail
33
4+ DC=" ${DC// \\ // } "
5+
46. $( dirname " ${BASH_SOURCE[0]} " ) /common.sh
57
68> $( dirname " ${BASH_SOURCE[0]} " ) /test.log
You can’t perform that action at this time.
0 commit comments