From cec9bca772fa13fc91e74672efd81459bb10e538 Mon Sep 17 00:00:00 2001 From: Patrick Quist Date: Thu, 16 Jan 2025 21:22:33 +0100 Subject: [PATCH] Update win-lib-build.yaml --- .github/workflows/win-lib-build.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/win-lib-build.yaml b/.github/workflows/win-lib-build.yaml index 6713f58c..fffeec9a 100644 --- a/.github/workflows/win-lib-build.yaml +++ b/.github/workflows/win-lib-build.yaml @@ -2,6 +2,15 @@ name: Library Builds for Windows compilers on: workflow_dispatch: + inputs: + library: + description: 'Library' + default: 'all' + required: true + compiler: + description: 'Compiler' + default: 'popular-compilers-only' + required: true jobs: librarybuild: @@ -11,4 +20,4 @@ jobs: - name: Download build script 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" - name: Build libraries - run: Set-Location "C:\tmp"; pwsh .\start-builder.ps1 -ConanPassword "${{ secrets.CONAN_PASSWORD }}" -Language c++ -Library fmt -Compiler all + 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 }}"