File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -34,22 +34,16 @@ jobs:
34
34
- name : Setup visual studio
35
35
uses : microsoft/setup-msbuild@v2
36
36
37
- - name : What's where
37
+ - name : Download, install 7zip.
38
38
run : |
39
- get-command zip
39
+ wget https://www.7-zip.org/a/7z2409-arm64.exe -OutFile 7z_arm.exe
40
+ Start-Process -FilePath ".\7z_arm.exe" -ArgumentList "/S" -Wait
41
+ echo "C:\Program Files\7-Zip" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
40
42
41
- - name : Download LLVM installer for woa64
43
+ - name : Download and install LLVM installer
42
44
run : |
43
45
curl -L -o LLVM-woa64.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.5/LLVM-19.1.5-woa64.exe
44
-
45
- - name : Install LLVM silently
46
- shell : pwsh
47
- run : |
48
46
Start-Process -FilePath ".\LLVM-woa64.exe" -ArgumentList "/S" -Wait
49
-
50
- - name : Add LLVM to PATH
51
- shell : pwsh
52
- run : |
53
47
$llvmPath = "C:\Program Files\LLVM\bin"
54
48
echo "$llvmPath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
55
49
66
60
- name : Pack
67
61
run : |
68
62
cd local
69
- zip -r ../builds/scipy_openblas32.zip scipy_openblas32
63
+ 7z a ../builds/scipy_openblas32.zip -tzip scipy_openblas32
70
64
71
65
- name : Test
72
66
# Disable test while we work out bash / testing.
80
74
cp for_test\test*.exe builds
81
75
82
76
- name : Test 32-bit interface wheel
83
- if : matrix.INTERFACE64 != '1'
84
77
run : |
85
78
python -m pip install --no-index --find-links dist scipy_openblas32
86
79
python -m scipy_openblas32
You can’t perform that action at this time.
0 commit comments