Skip to content

Commit

Permalink
Basic windows build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ShortDevelopment committed Jun 27, 2024
1 parent 00d249e commit bd6f35e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
workflow_dispatch:

jobs:
windows:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "true"

- name: Build x86
shell: pwsh
run: msbuild .\src\build\windows\MS_VS2022\Lerc\Lerc.vcxproj /p:Platform=x64 /p:OutDir="$pwd/runtimes/win-x64/native/"
- name: Build x64
shell: pwsh
run: msbuild .\src\build\windows\MS_VS2022\Lerc\Lerc.vcxproj /p:Platform=x86 /p:OutDir="$pwd/runtimes/win-x86/native/"

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: windows

0 comments on commit bd6f35e

Please sign in to comment.