2021-04-20 16:13:50 +08:00
|
|
|
.job-android:
|
|
|
|
|
|
|
|
stage: build
|
|
|
|
tags: [ "docker-android" ]
|
|
|
|
image: gitlab.linphone.org:4567/bc/public/linphone-android/bc-dev-android:30
|
|
|
|
|
|
|
|
job-android-hello-world:
|
|
|
|
extends: .job-android
|
|
|
|
script:
|
2021-09-08 16:22:26 +08:00
|
|
|
- cd android/kotlin/0-HelloWorld/
|
2021-04-20 16:13:50 +08:00
|
|
|
- ./gradlew assembleRelease
|
|
|
|
|
|
|
|
job-android-account:
|
|
|
|
extends: .job-android
|
|
|
|
script:
|
2021-09-08 16:22:26 +08:00
|
|
|
- cd android/kotlin/1-AccountLogin/
|
2021-04-20 16:13:50 +08:00
|
|
|
- ./gradlew assembleRelease
|
|
|
|
|
|
|
|
job-android-push-notifications:
|
|
|
|
extends: .job-android
|
|
|
|
script:
|
2021-09-08 16:22:26 +08:00
|
|
|
- cd android/kotlin/2-PushNotifications/
|
2021-04-20 16:13:50 +08:00
|
|
|
- ./gradlew assembleRelease
|
|
|
|
|
|
|
|
job-android-basic-chat:
|
|
|
|
extends: .job-android
|
|
|
|
script:
|
2021-09-08 16:22:26 +08:00
|
|
|
- cd android/kotlin/5-BasicChat/
|
2021-04-20 16:13:50 +08:00
|
|
|
- ./gradlew assembleRelease
|
|
|
|
|
|
|
|
job-android-advanced-chat:
|
|
|
|
extends: .job-android
|
|
|
|
script:
|
2021-09-08 16:22:26 +08:00
|
|
|
- cd android/kotlin/6-AdvancedChat/
|
2021-04-20 16:13:50 +08:00
|
|
|
- ./gradlew assembleRelease
|
|
|
|
|
|
|
|
job-android-incoming-call:
|
|
|
|
extends: .job-android
|
|
|
|
script:
|
2021-09-08 16:22:26 +08:00
|
|
|
- cd android/kotlin/3-IncomingCall/
|
2021-04-20 16:13:50 +08:00
|
|
|
- ./gradlew assembleRelease
|
|
|
|
|
|
|
|
job-android-outgoing-call:
|
|
|
|
extends: .job-android
|
|
|
|
script:
|
2021-09-08 16:22:26 +08:00
|
|
|
- cd android/kotlin/4-OutgoingCall/
|
2021-04-20 16:13:50 +08:00
|
|
|
- ./gradlew assembleRelease
|