Update and rename ccpp.yml to vs2019-x64.yml
This commit is contained in:
parent
dfb00e390b
commit
a1ebe961a1
|
@ -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
|
Loading…
Reference in New Issue