Files
winlib-builder/.github/workflows/libxml2.yml
Christoph M. Becker 07aa58dba0 Prepare vs17 library builds (GH-7)
* Add support for vs17 builds (for PHP 8.4)

We make the necessary additions to `compute-virtuals.ps1`, where the
choice of the WinSDK is somewhat arbitrary but rather conservative.

* Switch from windows-2019 to windows-2022 runners

This is needed to actually be able to do vs17 builds, since that
requires Visual Studio 2022, which is not available on the windows-
2019 runners.  That implies that vc15 builds are no longer possible
without additional changes[1], but that shouldn't be a concern because
none of the supported PHP versions require vc15 builds.

[1] <https://github.com/actions/runner-images/issues/9701>

* Update CMake generators

Since window-2022 uses Visual Studio 2022, we need to update the CMake
generators; using the proper toolset is already catered to by the `-T`
option.

* Bump vs16 Windows SDK to 10.0.20348.0

This solves the stdalign.h issue for ICU 75.1.
2024-10-04 01:06:21 +02:00

62 lines
2.1 KiB
YAML

name: Build libxml2
on:
workflow_dispatch:
inputs:
version:
description: libxml2 tag to build
required: true
php:
description: PHP version to build for
required: true
stability:
description: the series stability
required: false
default: 'staging'
defaults:
run:
shell: cmd
jobs:
build:
strategy:
matrix:
arch: [x64, x86]
runs-on: windows-2022
steps:
- name: Checkout winlib-builder
uses: actions/checkout@v4
with:
path: winlib-builder
- name: Checkout libxml2
uses: actions/checkout@v4
with:
path: libxml2
repository: winlibs/libxml2
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: Setup MSVC development environment
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{matrix.arch}}
toolset: ${{steps.virtuals.outputs.toolset}}
- name: Fetch dependencies
run: powershell winlib-builder/scripts/fetch-deps -lib libxml2 -version ${{github.event.inputs.php}} -vs ${{steps.virtuals.outputs.vs}} -arch ${{matrix.arch}} -stability ${{github.event.inputs.stability}}
- name: Configure libxml2
run: cd libxml2\win32 && cscript configure.js lib=%GITHUB_WORKSPACE%\deps\lib include=%GITHUB_WORKSPACE%\deps\include vcmanifest=yes prefix=%GITHUB_WORKSPACE%\install
- name: Build libxml2
run: cd libxml2\win32 && nmake /f Makefile.msvc
- name: Install libxml2
run: |
cd libxml2\win32
nmake /f Makefile.msvc install
cd ..\..
del /q install\bin\run*
del /q install\bin\test*
del /q install\bin\xml*.pdb
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{github.event.inputs.version}}-${{steps.virtuals.outputs.vs}}-${{matrix.arch}}
path: install