File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,15 @@ name: Library Builds for Windows compilers
2
2
3
3
on :
4
4
workflow_dispatch :
5
+ inputs :
6
+ library :
7
+ description : ' Library'
8
+ default : ' all'
9
+ required : true
10
+ compiler :
11
+ description : ' Compiler'
12
+ default : ' popular-compilers-only'
13
+ required : true
5
14
6
15
jobs :
7
16
librarybuild :
11
20
- name : Download build script
12
21
run : Invoke-WebRequest -Uri "https://raw.githubusercontent.com/compiler-explorer/infra/refs/heads/library-build-windows/init/start-builder.ps1" -OutFile "C:\tmp\start-builder.ps1"
13
22
- name : Build libraries
14
- run : Set-Location "C:\tmp"; pwsh .\start-builder.ps1 -ConanPassword "${{ secrets.CONAN_PASSWORD }}" -Language c++ -Library fmt -Compiler all
23
+ run : Set-Location "C:\tmp"; pwsh .\start-builder.ps1 -ConanPassword "${{ secrets.CONAN_PASSWORD }}" -Language c++ -Library "${{ github.event.inputs.library }}" -Compiler "${{ github.event.inputs.compiler }}"
You can’t perform that action at this time.
0 commit comments