File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 13
13
# Without this, invoking bash will cd to the home directory
14
14
CHERE_INVOKING : " yes"
15
15
BASH_PATH : " C:\\ Program Files\\ Git\\ bin\\ bash.exe"
16
- FORTRAN_BIN : flang
17
16
PLAT : arm64
18
17
INTERFACE64 : 0
19
18
63
62
7z a ../builds/scipy_openblas32.zip -tzip scipy_openblas32
64
63
65
64
- name : Test
66
- # Disable test while we work out bash / testing.
67
- if : false
68
65
run : |
69
66
& $env:BASH_PATH -lc tools/build_gfortran.sh
70
67
echo "Static test"
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ nm $static_libname | grep dpotrf
19
19
cp $dll_name .
20
20
21
21
if [ " $INTERFACE64 " == " 1" ]; then
22
- $FORTRAN_BIN -I $OBP /include -fdefault-integer-8 -o test.exe ${repo_path} /test64_.f90 $static_libname
23
- $FORTRAN_BIN -I $OBP /include -fdefault-integer-8 -o test_dyn.exe ${repo_path} /test64_.f90 $dynamic_libname
22
+ gfortran -I $OBP /include -fdefault-integer-8 -o test.exe ${repo_path} /test64_.f90 $static_libname
23
+ gfortran -I $OBP /include -fdefault-integer-8 -o test_dyn.exe ${repo_path} /test64_.f90 $dynamic_libname
24
24
else
25
- $FORTRAN_BIN -I $OBP /include -o test.exe ${repo_path} /test.f90 $static_libname
26
- $FORTRAN_BIN -I $OBP /include -o test_dyn.exe ${repo_path} /test.f90 $dynamic_libname
25
+ gfortran -I $OBP /include -o test.exe ${repo_path} /test.f90 $static_libname
26
+ gfortran -I $OBP /include -o test_dyn.exe ${repo_path} /test.f90 $dynamic_libname
27
27
fi
You can’t perform that action at this time.
0 commit comments