Skip to content

Commit a7c199d

Browse files
committed
Fix paths to .sh scripts
These need to be in Unix form, it appears.
1 parent 29cc3de commit a7c199d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,11 @@ jobs:
5555
- name: Build
5656
run: |
5757
git submodule update --init --recursive
58-
echo "Var: $env:CHERE_INVOKING"
59-
& $env:BASH_PATH -lc pwd
60-
& $env:BASH_PATH -lc tools\build_openblas.sh
58+
& $env:BASH_PATH -lc tools/build_openblas.sh
6159
6260
- name: Test
6361
run: |
64-
& $env:BASH_PATH -lc tools\build_gfortran.sh
62+
& $env:BASH_PATH -lc tools/build_gfortran.sh
6563
cp test.exe builds
6664
cp test_dyn.exe builds
6765
.\test.exe
@@ -77,4 +75,4 @@ jobs:
7775
OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN: ${{ secrets.MULTIBUILD_WHEELS_STAGING_ACCESS }}
7876
run: |
7977
pip install -q git+https://github.com/Anaconda-Platform/[email protected]
80-
& $env:BASH_PATH -lc tools\upload_to_anaconda_staging.sh
78+
& $env:BASH_PATH -lc tools/upload_to_anaconda_staging.sh

0 commit comments

Comments
 (0)