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 55 branches : [ main ]
66 pull_request :
77 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
915
1016env :
1117 OPENBLAS_COMMIT : " v0.3.29"
3541 - name : Setup visual studio
3642 uses : microsoft/setup-msbuild@v2
3743
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+
3849 - name : Download LLVM installer for woa64
3950 run : |
4051 curl -L -o LLVM-woa64.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.5/LLVM-19.1.5-woa64.exe
5970 run : |
6071 git submodule update --init --recursive
6172 .\tools\build_steps_win_arm64.bat
73+
74+ - name : Pack
75+ run : |
6276 cd local
6377 zip -r ../builds/scipy_openblas32.zip scipy_openblas32
6478
You can’t perform that action at this time.
0 commit comments