Skip to content

Commit

Permalink
add github workflow to build windows executable
Browse files Browse the repository at this point in the history
  • Loading branch information
rofl0r committed Feb 8, 2023
1 parent 6277586 commit c3890a8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build_win.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Dro2midi Windows build

on:
- push
- pull_request

jobs:
build-sln:
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1


- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.1
with:
msbuild-architecture: x64
vs-version: 16.1

- name: Build solution
run: |
SET CL=-Wno-c++11-narrowing
cmd /c build.bat
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: dro2midi-win-x64
path: dro2midi.exe

0 comments on commit c3890a8

Please sign in to comment.