Added Android gitlab-ci files
This commit is contained in:
parent
b1e016f82d
commit
0c3db77ecb
47
.gitlab-ci-files/job-android.yml
Normal file
47
.gitlab-ci-files/job-android.yml
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
.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:
|
||||||
|
- cd android/kotlin/HelloWorld/
|
||||||
|
- ./gradlew assembleRelease
|
||||||
|
|
||||||
|
job-android-account:
|
||||||
|
extends: .job-android
|
||||||
|
script:
|
||||||
|
- cd android/kotlin/AccountLogin/
|
||||||
|
- ./gradlew assembleRelease
|
||||||
|
|
||||||
|
job-android-push-notifications:
|
||||||
|
extends: .job-android
|
||||||
|
script:
|
||||||
|
- cd android/kotlin/Pushnotifications/
|
||||||
|
- ./gradlew assembleRelease
|
||||||
|
|
||||||
|
job-android-basic-chat:
|
||||||
|
extends: .job-android
|
||||||
|
script:
|
||||||
|
- cd android/kotlin/BasicChat/
|
||||||
|
- ./gradlew assembleRelease
|
||||||
|
|
||||||
|
job-android-advanced-chat:
|
||||||
|
extends: .job-android
|
||||||
|
script:
|
||||||
|
- cd android/kotlin/AdvancedChat/
|
||||||
|
- ./gradlew assembleRelease
|
||||||
|
|
||||||
|
job-android-incoming-call:
|
||||||
|
extends: .job-android
|
||||||
|
script:
|
||||||
|
- cd android/kotlin/IncomingCall/
|
||||||
|
- ./gradlew assembleRelease
|
||||||
|
|
||||||
|
job-android-outgoing-call:
|
||||||
|
extends: .job-android
|
||||||
|
script:
|
||||||
|
- cd android/kotlin/OutgoingCall/
|
||||||
|
- ./gradlew assembleRelease
|
16
.gitlab-ci.yml
Normal file
16
.gitlab-ci.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
# Base configuration
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#################################################
|
||||||
|
# Platforms to test
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
include:
|
||||||
|
- '.gitlab-ci-files/job-android.yml'
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- build
|
Loading…
Reference in New Issue
Block a user