Build enchant #14
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 enchant | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: enchant 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 enchant | |
uses: actions/checkout@v4 | |
with: | |
path: enchant | |
repository: winlibs/enchant | |
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: Fetch dependencies | |
run: powershell winlib-builder/scripts/fetch-deps -lib enchant -version ${{github.event.inputs.php}} -vs ${{steps.virtuals.outputs.vs}} -arch ${{matrix.arch}} -stability ${{github.event.inputs.stability}} | |
- name: Setup msbuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build enchant | |
run: cd enchant && msbuild /t:libenchant;libenchant_hunspell /p:Configuration=Release;Platform=${{steps.virtuals.outputs.msarch}};PlatformToolset=${{steps.virtuals.outputs.msts}};WindowsTargetPlatformVersion=${{steps.virtuals.outputs.winsdk}} msvc${{steps.virtuals.outputs.vsnum}}\enchant2.sln | |
- name: Install enchant | |
run: | | |
cd enchant | |
if "${{matrix.arch}}" == "x64" ( | |
set prefix=msvc${{steps.virtuals.outputs.vsnum}}\x64 | |
) else ( | |
set prefix=bin | |
) | |
echo %prefix% | |
xcopy %prefix%\Release\libenchant2.dll ..\install\bin\* | |
xcopy %prefix%\Release\libenchant2.pdb ..\install\bin\* | |
xcopy %prefix%\Release\libenchant2_hunspell.dll ..\install\bin\* | |
xcopy %prefix%\Release\libenchant2_hunspell.pdb ..\install\bin\* | |
xcopy src\enchant.h ..\install\include\* | |
xcopy %prefix%\Release\libenchant2.lib ..\install\lib\* | |
xcopy %prefix%\Release\libenchant2_hunspell.lib ..\install\lib\* | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{github.event.inputs.version}}-${{steps.virtuals.outputs.vs}}-${{matrix.arch}} | |
path: install |