mirror of
https://github.com/libretro/FBNeo.git
synced 2024-11-23 08:59:39 +00:00
b3a55ec430
this one is also broken
30 lines
837 B
Plaintext
30 lines
837 B
Plaintext
name: VS2019 x64 CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
buildvsx64:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup MSBuild.exe
|
|
uses: microsoft/setup-msbuild@v1.0.2
|
|
- 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
|