Merge pull request #1662 from oddMLan/update-appveyor-yml

[appveyor] Fix package zip filename
This commit is contained in:
zilmar 2019-10-07 09:24:19 +10:30 committed by GitHub
commit d960462209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

@ -12,6 +12,7 @@ for /F "tokens=1,2,3 delims=-" %%i in ("%GIT_DESCRIBE%") do call :process_git_de
for /F "tokens=1,2,3" %%i in (%base_dir%\Source\Project64-core\version.h.in) do call :process_version %%i %%j %%k
set VERSION=v%VERSION_MAJOR%.%VERSION_MINOR%.%VERSION_REVISION%-%VERSION_BUILD%-%VERSION_COMMIT%
echo %VERSION%
echo GIT_DESCRIBE = %VERSION% > "%base_dir%\git.properties"
goto :EOF

View File

@ -9,17 +9,15 @@ configuration:
before_build:
- ps: >-
If ($env:APPVEYOR_BUILD_VERSION -Like "1.0*") {
echo $env:APPVEYOR_BUILD_VERSION
$current_tag = git describe --tags --long --dirty
echo $current_tag
appveyor UpdateBuild -Version $current_tag
$version = Source/Script/SetGitProperties.cmd
appveyor UpdateBuild -Version $version
}
build:
project: Project64.sln
parallel: true
verbosity: minimal
after_build:
- Source/Script/package_zip.cmd %current_tag%-%platform%.zip %platform%
- Source/Script/package_zip.cmd %APPVEYOR_BUILD_VERSION%-%platform%.zip %platform%
artifacts:
- path: Package/*.zip
- path: Package/*.zip