add github workflow to build win64 artifact

special thanks to @SimonAfek who figured out some nitty-gritty stuff
to make this work.
This commit is contained in:
rofl0r 2022-02-08 15:48:07 +00:00
parent f52eed131a
commit 9e0aed2267
2 changed files with 33 additions and 0 deletions

31
.github/workflows/build_win.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: DeSmuME Windows build
on:
- push
- pull_request
jobs:
build-sln:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.3
with:
msbuild-architecture: x64
vs-version: 16.1
- name: Build solution
run: |
SET CL=-Wno-c++11-narrowing
msbuild 'desmume/src/frontend/windows/DeSmuME.sln' /p:configuration="Release" /p:platform=x64 /p:CL_cgthreads=1 /p:CLToolExe=clang-cl.exe
cmd /c desmume\src\frontend\windows\ci_postbuild.bat
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: desmume-win-x64
path: desmume/src/frontend/windows/__bins/*.exe

View File

@ -0,0 +1,2 @@
@echo off
echo CI postbuild script executed