2019-11-01 21:50:57 +00:00
|
|
|
name: VS2019 win32 CI
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
buildvsx86:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
2020-01-23 22:01:59 +00:00
|
|
|
- uses: actions/checkout@v1
|
2019-11-01 21:50:57 +00:00
|
|
|
- name: Setup MSBuild.exe
|
|
|
|
uses: warrenbuckley/Setup-MSBuild@v1
|
|
|
|
- name: MSBuild x86
|
|
|
|
working-directory: projectfiles/visualstudio-2019
|
|
|
|
run: |
|
|
|
|
msbuild fba_vs2010.vcxproj /m /property:Configuration=Release /property:Platform=x86 /verbosity:minimal
|
2020-02-04 21:34:19 +00:00
|
|
|
# - name: make artifacts
|
|
|
|
# run: |
|
|
|
|
# mkdir fbn-win32-vs
|
|
|
|
# cd fbn-win32-vs
|
|
|
|
# cp ../projectfiles/visualstudio-2019/Win32/Release/*.exe .
|
|
|
|
# cp ../fba.chm .
|
|
|
|
# cp ../*.zip .
|
|
|
|
# cp ../src/license.txt .
|
|
|
|
# cp ../whatsnew.html .
|
|
|
|
# - name: upload vs x86 artifacts
|
|
|
|
# uses: actions/upload-artifact@v1
|
|
|
|
# with:
|
|
|
|
# name: fbn-win32-vs
|
|
|
|
# path: fbn-win32-vs
|
|
|
|
#
|