Skip to content

Commit

Permalink
Windows build fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpartanJ committed May 11, 2024
1 parent ae5d1ba commit 93cb5b1
Show file tree
Hide file tree
Showing 3 changed files with 2,926 additions and 2,912 deletions.
76 changes: 40 additions & 36 deletions .github/workflows/eepp-windows-build-check.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,40 @@
name: Windows

on: [push, pull_request]

jobs:
Windows:
runs-on: windows-latest
env:
MSBUILD_PATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
fetch-depth: 2
- name: Checkout submodules
run: |
git submodule update --init --recursive
- name: Install dependencies
shell: powershell
run: |
Invoke-WebRequest -Uri "https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-windows.zip" -OutFile "premake-5.0.0-beta2-windows.zip"
Expand-Archive -DestinationPath . -Path premake-5.0.0-beta2-windows.zip
- name: Create project
shell: powershell
run: |
./premake5.exe --windows-vc-build vs2022
- name: Build
shell: cmd
run: |
"%MSBUILD_PATH%\MSBuild.exe" .\make\windows\eepp.sln -m /p:Platform="x64" /p:Configuration="release"
- name: Unit Tests
shell: cmd
run: |
cd bin\unit_tests
./eepp-unit_tests.exe
name: Windows

on: [push, pull_request]

jobs:
Windows:
runs-on: windows-latest
env:
MSBUILD_PATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\
steps:
- name: Configure Git
shell: cmd
run: |
git config --system core.autocrlf false
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
fetch-depth: 2
- name: Checkout submodules
run: |
git submodule update --init --recursive
- name: Install dependencies
shell: powershell
run: |
Invoke-WebRequest -Uri "https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-windows.zip" -OutFile "premake-5.0.0-beta2-windows.zip"
Expand-Archive -DestinationPath . -Path premake-5.0.0-beta2-windows.zip
- name: Create project
shell: powershell
run: |
./premake5.exe --windows-vc-build vs2022
- name: Build
shell: cmd
run: |
"%MSBUILD_PATH%\MSBuild.exe" .\make\windows\eepp.sln -m /p:Platform="x64" /p:Configuration="release"
- name: Unit Tests
shell: cmd
run: |
cd bin\unit_tests
./eepp-unit_tests.exe

0 comments on commit 93cb5b1

Please sign in to comment.