Skip to content

Commit

Permalink
Update win-lib-build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf authored Jan 16, 2025
1 parent 16e2bed commit cec9bca
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/win-lib-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}"

0 comments on commit cec9bca

Please sign in to comment.