Skip to content

Commit ab3b56e

Browse files
committed
use bash
1 parent 2b3b9d2 commit ab3b56e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/windows.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,17 +81,19 @@ jobs:
8181
echo CIBW_ENVIRONMENT_WINDOWS=$env:CIBW_ENVIRONMENT_WINDOWS
8282
8383
- name: Build
84+
shell: bash
8485
run: |
8586
git submodule update --init --recursive
86-
& $env:BASH_PATH -lc tools/build_steps_windows.sh
87+
bash -lc tools/build_steps_windows.sh
8788
8889
- name: Test
90+
shell: bash
8991
run: |
90-
& $env:BASH_PATH -lc tools/build_gfortran.sh
92+
bash -lc tools/build_gfortran.sh
9193
echo "Static test"
92-
.\for_test\test.exe
94+
./for_test/test.exe
9395
echo "Dynamic test"
94-
.\for_test\test_dyn.exe
96+
./for_test/test_dyn.exe
9597
9698
- name: Copy
9799
run: |

0 commit comments

Comments
 (0)