Library Builds for Windows compilers #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
runs-on: ['win-builder'] | |
steps: | |
- 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 "${{ github.event.inputs.library }}" -Compiler "${{ github.event.inputs.compiler }}" |