Skip to content

Commit cec9bca

Browse files
authored
Update win-lib-build.yaml
1 parent 16e2bed commit cec9bca

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/win-lib-build.yaml

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@ name: Library Builds for Windows compilers
22

33
on:
44
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
514

615
jobs:
716
librarybuild:
@@ -11,4 +20,4 @@ jobs:
1120
- name: Download build script
1221
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"
1322
- 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 }}"

0 commit comments

Comments
 (0)