Skip to content

Library Builds for Windows compilers #19

Library Builds for Windows compilers

Library Builds for Windows compilers #19

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 }}"