1.0.2 #46
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-2019] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- uses: microsoft/[email protected] | |
- name: Windows 8.1 SDK | |
shell: powershell | |
run: | | |
Invoke-WebRequest -Method Get -Uri https://go.microsoft.com/fwlink/p/?LinkId=323507 -OutFile sdksetup.exe -UseBasicParsing | |
Start-Process -Wait sdksetup.exe -ArgumentList "/q", "/norestart", "/features", "OptionId.WindowsDesktopSoftwareDevelopmentKit", "OptionId.NetFxSoftwareDevelopmentKit" | |
- name: Compiling | |
shell: cmd | |
run: | | |
msbuild AutoUpdater.vs160.sln /property:Configuration=Release | |
msbuild AutoUpdater.vs160.sln /property:Configuration=Debug | |
msbuild AutoUpdater.vs160.sln /property:Configuration=Release /p:Platform=x64 | |
msbuild AutoUpdater.vs160.sln /property:Configuration=Debug /p:Platform=x64 |