@@ -145,7 +145,7 @@ jobs:
145145 - name : 🛠️ Configure
146146 shell : C:/msys64/usr/bin/bash.exe -e '{0}'
147147 run : |
148- ${{ runner.os == 'Windows' && 'ghcup run -m --' || '' }} cabal configure \
148+ cabal configure \
149149 --enable-tests \
150150 --enable-benchmarks \
151151 --disable-documentation \
@@ -164,7 +164,7 @@ jobs:
164164 - name : 💾 Generate Cabal plan
165165 shell : C:/msys64/usr/bin/bash.exe -e '{0}'
166166 run : |
167- ${{ runner.os == 'Windows' && 'ghcup run -m --' || '' }} cabal build all --dry-run
167+ cabal build all --dry-run
168168
169169 - name : 💾 Restore cache
170170 uses : actions/cache/restore@v4
@@ -193,7 +193,7 @@ jobs:
193193 - name : 🛠️ Build Cabal dependencies
194194 shell : C:/msys64/usr/bin/bash.exe -e '{0}'
195195 run : |
196- ${{ runner.os == 'Windows' && 'ghcup run -m --' || '' }} cabal build all --only-dependencies
196+ cabal build all --only-dependencies
197197
198198 - name : 💾 Save cache
199199 uses : actions/cache/save@v4
@@ -210,7 +210,7 @@ jobs:
210210 - name : 🏗️ Build
211211 shell : C:/msys64/usr/bin/bash.exe -e '{0}'
212212 run : |
213- ${{ runner.os == 'Windows' && 'ghcup run -m --' || '' }} cabal build all
213+ cabal build all
214214
215215 # TODO: see the TODO on the Build step
216216 - name : 🧪 Test
@@ -221,6 +221,6 @@ jobs:
221221 # sure to include a timeout for Tasty tests regardless.
222222 TASTY_TIMEOUT : " 5m"
223223 run : |
224- ${{ runner.os == 'Windows' && 'ghcup run -m --' || '' }} echo $PATH
225- ${{ runner.os == 'Windows' && 'ghcup run -m --' || '' }} cabal run --verbose botan-low-bcrypt-tests
226- ${{ runner.os == 'Windows' && 'ghcup run -m --' || '' }} cabal test all -j1 --test-show-details=direct
224+ echo $PATH
225+ cabal run --verbose botan-low-bcrypt-tests
226+ cabal test all -j1 --test-show-details=direct
0 commit comments