Add GitHub Action for Windows

Adds a GitHub Action that will build CCExtractor for Windows with msbuild. It will build in Release mode and Debug mode, without OCR or other features enabled.
This commit is contained in:
Willem 2020-01-19 15:34:25 +01:00 committed by GitHub
parent c69d2db52b
commit 2e2075ca52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

46
.github/workflows/build_windows.yml vendored Normal file
View File

@ -0,0 +1,46 @@
name: Build CCExtractor on Windows
on:
push:
branches: master
paths:
- '.github/workflows/build_windows.yml'
- '**.c'
- '**.h'
- 'windows/**'
pull_request:
types: [opened, synchronize, reopened]
paths:
- '.github/workflows/build_windows.yml'
- '**.c'
- '**.h'
- 'windows/**'
jobs:
build:
runs-on: windows-latest
steps:
- name: Add V7.1A SDK
run: |
"C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe" modify --channelId VisualStudio.16.Release --productId Microsoft.VisualStudio.Product.Enterprise -q --add Microsoft.VisualStudio.Component.WinXP
shell: cmd
- name: Check out repository
uses: actions/checkout@v1
- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1
- name: build Release
run: msbuild ccextractor.sln /p:Configuration=Release
working-directory: ./windows
- name: build Debug
run: msbuild ccextractor.sln /p:Configuration=Debug
working-directory: ./windows
- name: Prepare artifacts
run: mkdir ./windows/artifacts
- name: Copy release artifact
run: cp ./windows/Release/ccextractorwin.exe ./windows/artifacts/; cp ./windows/Release/ccextractorgui.exe ./windows/artifacts/
- name: Copy debug artifact
run: cp ./windows/Debug/ccextractorwin.exe ./windows/artifacts/ccextractorwin_debug.exe; cp ./windows/Debug/ccextractorgui.exe ./windows/artifacts/ccextractorgui_debug.exe
- uses: actions/upload-artifact@v1
with:
name: CCExtractor Windows Release_or_Debug build
path: ./windows/artifacts