Build nghttp2 #15
Workflow file for this run
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: Build nghttp2 | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: nghttp2 tag to build | |
required: true | |
php: | |
description: PHP version to build for | |
required: true | |
defaults: | |
run: | |
shell: cmd | |
jobs: | |
build: | |
strategy: | |
matrix: | |
arch: [x64, x86] | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout winlib-builder | |
uses: actions/checkout@v4 | |
with: | |
path: winlib-builder | |
- name: Checkout nghttp2 | |
uses: actions/checkout@v4 | |
with: | |
path: nghttp2 | |
repository: winlibs/nghttp2 | |
ref: ${{github.event.inputs.version}} | |
- name: Compute virtual inputs | |
id: virtuals | |
run: powershell winlib-builder/scripts/compute-virtuals -version ${{github.event.inputs.php}} -arch ${{matrix.arch}} | |
- name: Configure nghttp2 | |
run: cd nghttp2 && cmake -G "Visual Studio 16 2019" -A ${{steps.virtuals.outputs.msarch}} -T ${{steps.virtuals.outputs.msts}} . | |
- name: Build nghttp2 | |
run: cd nghttp2 && cmake --build . --config RelWithDebInfo --target nghttp2 | |
- name: Install nghttp2 | |
run: | | |
cd nghttp2 | |
cmake --install . --config RelWithDebInfo --prefix ..\winlib-builder\build | |
copy lib\RelWithDebInfo\nghttp2.pdb ..\winlib-builder\build\bin | |
del /s /q ..\winlib-builder\build\lib\pkgconfig\* | |
del /s /q ..\winlib-builder\build\share\* | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{github.event.inputs.version}}-${{steps.virtuals.outputs.vs}}-${{matrix.arch}} | |
path: winlib-builder/build |