12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- Set-PSDebug -Trace 1
- $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\
- & ./gradlew build
- 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\
- & ./gradlew build
- 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\
- & ./gradlew build
- 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}
- } 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}
- & msbuild $env:APPVEYOR_BUILD_FOLDER\cocos_new_test\proj.win32\cocos_new_test.sln /t:Build /p:Platform="Win32" /p:Configuration="Release" /m /consoleloggerparameters:"PerformanceSummary;NoSummary"
- if ($lastexitcode -ne 0) {throw}
- & 7z a release_win32.7z $env:APPVEYOR_BUILD_FOLDER\cocos_new_test\proj.win32\Release.win32\
- if ($lastexitcode -ne 0) {throw}
- Push-AppveyorArtifact release_win32.7z
- }
- Else {
- & msbuild $env:APPVEYOR_BUILD_FOLDER\build\cocos2d-win32.sln /t:Build /p:Platform="Win32" /p:Configuration="Release" /m /consoleloggerparameters:"PerformanceSummary;NoSummary"
- if ($lastexitcode -ne 0) {throw}
- & 7z a release_win32.7z $env:APPVEYOR_BUILD_FOLDER\build\Release.win32\
- if ($lastexitcode -ne 0) {throw}
- Push-AppveyorArtifact release_win32.7z
- }
|