Update and rename ccpp.yml to vs2019-x64.yml

This commit is contained in:
tmaul 2019-11-01 21:52:43 +00:00 committed by GitHub
parent dfb00e390b
commit a1ebe961a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 0 deletions

31
.github/workflows/vs2019-x64.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: VS2019 x86 CI
on: [push]
jobs:
buildvsx64:
runs-on: windows-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1
- name: MSBuild x64
working-directory: projectfiles/visualstudio-2019
run: |
msbuild fba_vs2010.vcxproj /m /property:Configuration=Release /property:Platform=x64 /verbosity:minimal
- name: make artifacts
run: |
mkdir fbn-x64-vs
cd fbn-x64-vs
cp ../projectfiles/visualstudio-2019/x64/Release/*.exe .
cp ../fba.chm .
cp ../*.zip .
cp ../src/license.txt .
cp ../whatsnew.html .
- name: upload vs x64 artifacts
uses: actions/upload-artifact@v1
with:
name: fbn-x64-vs
path: fbn-x64-vs