2018-01-30 09:20:44 +08:00
|
|
|
Set-PSDebug -Trace 1
|
2018-01-15 14:38:09 +08:00
|
|
|
$python = "C:\\Python27\\python.exe"
|
|
|
|
|
|
|
|
Write-Host "Set environment"
|
|
|
|
# gradlew
|
|
|
|
$env:ANDROID_HOME=$env:APPVEYOR_BUILD_FOLDER + "\..\android-sdk"
|
|
|
|
$env:ANDROID_NDK_HOME=$env:APPVEYOR_BUILD_FOLDER + "\..\android-ndk-r16b"
|
|
|
|
# gen-libs
|
|
|
|
$env:ANDROID_SDK_ROOT=$env:APPVEYOR_BUILD_FOLDER + "\..\android-sdk"
|
|
|
|
$env:NDK_ROOT=$env:APPVEYOR_BUILD_FOLDER + "\..\android-ndk-r16b"
|
|
|
|
|
|
|
|
function PushAndroidArtifacts
|
|
|
|
{
|
|
|
|
# https://www.appveyor.com/docs/packaging-artifacts/
|
|
|
|
$root = Resolve-Path app\build\outputs\apk; [IO.Directory]::GetFiles($root.Path, '*.*', 'AllDirectories') | % { Push-AppveyorArtifact $_ -FileName $_.Substring($root.Path.Length + 1) -DeploymentName to-publish }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
If ($env:build_type -eq "android_cpp_tests") {
|
|
|
|
Write-Host "Build tests\cpp-tests"
|
|
|
|
Push-Location $env:APPVEYOR_BUILD_FOLDER\tests\cpp-tests\proj.android\
|
2018-07-30 14:54:52 +08:00
|
|
|
& ./gradlew assembleDebug
|
2018-01-15 14:38:09 +08:00
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
PushAndroidArtifacts
|
|
|
|
Pop-Location
|
|
|
|
|
|
|
|
} elseif ($env:build_type -eq "android_cpp_empty_test") {
|
|
|
|
Write-Host "Build tests\cpp-empty-test"
|
|
|
|
Push-Location $env:APPVEYOR_BUILD_FOLDER\tests\cpp-empty-test\proj.android\
|
2018-07-22 15:09:00 +08:00
|
|
|
& ./gradlew assembleRelease
|
2018-01-15 14:38:09 +08:00
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
PushAndroidArtifacts
|
|
|
|
Pop-Location
|
|
|
|
|
|
|
|
} elseif ($env:build_type -eq "android_cocos_new_test") {
|
|
|
|
Write-Host "Create new project cocos_new_test"
|
|
|
|
& $python -u tools\cocos2d-console\bin\cocos.py --agreement n new -l cpp -p my.pack.qqqq cocos_new_test
|
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
|
|
|
|
Write-Host "Build cocos_new_test"
|
|
|
|
Push-Location $env:APPVEYOR_BUILD_FOLDER\cocos_new_test\proj.android\
|
2018-07-22 15:09:00 +08:00
|
|
|
& ./gradlew assembleRelease
|
2018-01-15 14:38:09 +08:00
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
PushAndroidArtifacts
|
|
|
|
Pop-Location
|
|
|
|
# TODO: uncomment when fixed
|
|
|
|
# } elseif ($env:build_type -eq "android_gen_libs") {
|
|
|
|
# Write-Host "Build cocos gen-libs"
|
|
|
|
# & $python -u tools\cocos2d-console\bin\cocos.py gen-libs -p android -m release --ap android-15 --app-abi armeabi-v7a --agreement n
|
|
|
|
# if ($lastexitcode -ne 0) {throw}
|
|
|
|
|
2018-01-30 09:20:44 +08:00
|
|
|
} elseif ($env:build_type -eq "windows32_cocos_new_test") {
|
|
|
|
Write-Host "Create new project windows32_cocos_new_test"
|
|
|
|
& $python -u tools\cocos2d-console\bin\cocos.py --agreement n new -l cpp -p my.pack.qqqq cocos_new_test
|
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
|
2018-07-25 10:08:53 +08:00
|
|
|
& mkdir $env:APPVEYOR_BUILD_FOLDER\cocos_new_test\b
|
2018-01-30 09:20:44 +08:00
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
|
2018-07-25 10:08:53 +08:00
|
|
|
Push-Location $env:APPVEYOR_BUILD_FOLDER\cocos_new_test\b
|
|
|
|
& cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
|
|
|
|
& cmake --build . --config Release
|
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
|
|
|
|
& 7z a release_win32.7z $env:APPVEYOR_BUILD_FOLDER\cocos_new_test\b\bin\
|
2018-01-30 09:20:44 +08:00
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
|
|
|
|
Push-AppveyorArtifact release_win32.7z
|
2018-01-15 14:38:09 +08:00
|
|
|
}
|
|
|
|
Else {
|
2018-01-30 09:20:44 +08:00
|
|
|
& msbuild $env:APPVEYOR_BUILD_FOLDER\build\cocos2d-win32.sln /t:Build /p:Platform="Win32" /p:Configuration="Release" /m /consoleloggerparameters:"PerformanceSummary;NoSummary"
|
|
|
|
|
2018-01-15 14:38:09 +08:00
|
|
|
if ($lastexitcode -ne 0) {throw}
|
2018-01-30 09:20:44 +08:00
|
|
|
& 7z a release_win32.7z $env:APPVEYOR_BUILD_FOLDER\build\Release.win32\
|
|
|
|
if ($lastexitcode -ne 0) {throw}
|
|
|
|
|
|
|
|
Push-AppveyorArtifact release_win32.7z
|
2018-01-15 14:38:09 +08:00
|
|
|
}
|