File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 5
5
branches : [ main ]
6
6
pull_request :
7
7
branches : [ main ]
8
- workflow_dispatch : null
8
+ workflow_dispatch :
9
+ inputs :
10
+ debug_enabled :
11
+ type : boolean
12
+ description : ' Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
13
+ required : false
14
+ default : false
9
15
10
16
env :
11
17
OPENBLAS_COMMIT : " v0.3.29"
35
41
- name : Setup visual studio
36
42
uses : microsoft/setup-msbuild@v2
37
43
44
+ # Enable tmate debugging of manually-triggered workflows if the input option was provided
45
+ - name : Setup tmate session
46
+ uses : mxschmitt/action-tmate@v3
47
+ if : ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
48
+
38
49
- name : Download LLVM installer for woa64
39
50
run : |
40
51
curl -L -o LLVM-woa64.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.5/LLVM-19.1.5-woa64.exe
59
70
run : |
60
71
git submodule update --init --recursive
61
72
.\tools\build_steps_win_arm64.bat
73
+
74
+ - name : Pack
75
+ run : |
62
76
cd local
63
77
zip -r ../builds/scipy_openblas32.zip scipy_openblas32
64
78
You can’t perform that action at this time.
0 commit comments