Skip to content

Commit

Permalink
Merge pull request #1 from LithyRiolu/appveyor
Browse files Browse the repository at this point in the history
Update .appveyor.yml
  • Loading branch information
LithyRiolu committed Apr 18, 2020
2 parents bc95767 + a795d59 commit f1d9329
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,17 @@ build_script:
- md build
- cd build
- cmake -G "Visual Studio 15 2017 Win64" ..
- MSBuild concealX.sln /p:Configuration=Release /m
- MSBuild concealX.sln /p:Configuration=Release /m

after_build:
- if not defined APPVEYOR_REPO_TAG_NAME (set APPVEYOR_REPO_TAG_NAME=%APPVEYOR_REPO_COMMIT%)
- cd src\Release
- mkdir conceal-%APPVEYOR_REPO_TAG_NAME%
- copy *.exe conceal-%APPVEYOR_REPO_TAG_NAME%
- copy ..\..\..\LICENSE conceal-%APPVEYOR_REPO_TAG_NAME%
- 7z a conceal-%APPVEYOR_REPO_TAG_NAME%-windows.zip conceal-%APPVEYOR_REPO_TAG_NAME%
- copy conceal-%APPVEYOR_REPO_TAG_NAME%-windows.zip ..\..\..\

artifacts:
- path: conceal-$(APPVEYOR_REPO_TAG_NAME)-windows.zip
name: ConcealRelease

0 comments on commit f1d9329

Please sign in to comment.