-
Notifications
You must be signed in to change notification settings - Fork 5
51 lines (51 loc) · 1.87 KB
/
wineditline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Build wineditline
on:
workflow_dispatch:
inputs:
version:
description: wineditline 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-2022
steps:
- name: Checkout winlib-builder
uses: actions/checkout@v4
with:
path: winlib-builder
- name: Checkout wineditline
uses: actions/checkout@v4
with:
path: wineditline
repository: winlibs/wineditline
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 wineditline
run: cd wineditline && md build && cd build && cmake -G "Visual Studio 17 2022" -A ${{steps.virtuals.outputs.msarch}} -T ${{steps.virtuals.outputs.msts}} -DCMAKE_SYSTEM_VERSION=${{steps.virtuals.outputs.winsdk}} ..
- name: Build wineditline
run: cd wineditline\build && cmake --build . --config RelWithDebInfo
- name: Install wineditline
run: |
cd wineditline
xcopy build\src\RelWithDebInfo\edit.dll ..\install\bin\*
xcopy build\src\RelWithDebInfo\edit.pdb ..\install\bin\*
xcopy src\editline\*.h ..\install\include\editline\*
xcopy build\src\RelWithDebInfo\edit.lib ..\install\lib\*
xcopy build\src\RelWithDebInfo\edit_a.lib ..\install\lib\*
xcopy build\src\RelWithDebInfo\edit_a.pdb ..\install\lib\*
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ${{github.event.inputs.version}}-${{steps.virtuals.outputs.vs}}-${{matrix.arch}}
path: install