The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: Add Release builds of Android builds

+58 -4
+48 -2
.gitlab-ci.yml
··· 375 375 - echo "Build Options:"; grep "^XRT_" build/CMakeCache.txt 376 376 - ninja -C build 377 377 378 - android:outOfProcess: 378 + android:outOfProcessDebug: 379 379 stage: build 380 380 extends: 381 381 - .monado.image.debian:bullseye-ndk ··· 398 398 paths: 399 399 - src/xrt/targets/openxr_android/build/outputs/apk/outOfProcess 400 400 401 - android:inProcess: 401 + android:inProcessDebug: 402 402 stage: build 403 403 extends: 404 404 - .monado.image.debian:bullseye-ndk ··· 417 417 - cp .gitlab-ci/local.properties . 418 418 - ./gradlew clean 419 419 - ./gradlew assembleInProcessDebug 420 + artifacts: 421 + paths: 422 + - src/xrt/targets/openxr_android/build/outputs/apk/inProcess 423 + 424 + android:outOfProcessRelease: 425 + stage: build 426 + extends: 427 + - .monado.image.debian:bullseye-ndk 428 + before_script: 429 + # For caching gradle stuff 430 + - export GRADLE_USER_HOME=`pwd`/.gradlehome 431 + 432 + variables: 433 + GRADLE_ARGS: "-Porg.gradle.daemon=false " 434 + cache: 435 + paths: 436 + - .gradlehome/wrapper 437 + - .gradlehome/caches 438 + 439 + script: 440 + - cp .gitlab-ci/local.properties . 441 + - ./gradlew clean 442 + - ./gradlew assembleOutOfProcessRelease 443 + artifacts: 444 + paths: 445 + - src/xrt/targets/openxr_android/build/outputs/apk/outOfProcess 446 + 447 + android:inProcessRelease: 448 + stage: build 449 + extends: 450 + - .monado.image.debian:bullseye-ndk 451 + before_script: 452 + # For caching gradle stuff 453 + - export GRADLE_USER_HOME=`pwd`/.gradlehome 454 + 455 + variables: 456 + GRADLE_ARGS: "-Porg.gradle.daemon=false " 457 + cache: 458 + paths: 459 + - .gradlehome/wrapper 460 + - .gradlehome/caches 461 + 462 + script: 463 + - cp .gitlab-ci/local.properties . 464 + - ./gradlew clean 465 + - ./gradlew assembleInProcessRelease 420 466 artifacts: 421 467 paths: 422 468 - src/xrt/targets/openxr_android/build/outputs/apk/inProcess
+10 -2
.gitlab-ci/config.yml
··· 142 142 BUILD_DOC: "OFF" 143 143 ANDROID_ABI: arm64-v8a 144 144 145 - - name: android:outOfProcess 145 + - name: android:outOfProcessDebug 146 146 target: assembleOutOfProcessDebug 147 147 artifact_path: src/xrt/targets/openxr_android/build/outputs/apk/outOfProcess 148 148 149 - - name: android:inProcess 149 + - name: android:inProcessDebug 150 150 target: assembleInProcessDebug 151 + artifact_path: src/xrt/targets/openxr_android/build/outputs/apk/inProcess 152 + 153 + - name: android:outOfProcessRelease 154 + target: assembleOutOfProcessRelease 155 + artifact_path: src/xrt/targets/openxr_android/build/outputs/apk/outOfProcess 156 + 157 + - name: android:inProcessRelease 158 + target: assembleInProcessRelease 151 159 artifact_path: src/xrt/targets/openxr_android/build/outputs/apk/inProcess 152 160 153 161 - name: ubuntu