aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorRaphael Cotty <raphael.cotty@gmail.com>2021-03-31 22:36:16 +0200
committerRaphaƫl Cotty <raphael.cotty@gmail.com>2021-09-30 20:48:55 +0000
commit3318df5ffe2b67ee67efff02259c51a9cc21a253 (patch)
treec5c8dc0ff60a6cb536a266ed2c25d44367df145d /.github/workflows/main.yml
parent8a2fbcf80de30a464977460f58a1d58187513fc5 (diff)
Add android testing with different ndk versions
New docker images are added to test different android ndks. Those images don't have Qt so only a subset of the tests are run. So far I added 3 images: r23 (LTS), r21e (LTS) and r19c (minimum one). The other android images also have a new ANDROID_NDK_VERSION argument set to the r23. Change-Id: Iaa7c80b9cac1c7888b3297fac13333d22a9ad0bc Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 70a283159..935605566 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -353,6 +353,24 @@ jobs:
script: './scripts/test-qt-for-android.sh',
}
- {
+ name: 'Run Android tests (ndk r19c)',
+ image: 'focal-android-ndk-r19c',
+ profile: '',
+ script: './scripts/test-for-android.sh',
+ }
+ - {
+ name: 'Run Android tests (ndk r21e)',
+ image: 'focal-android-ndk-r21e',
+ profile: '',
+ script: './scripts/test-for-android.sh',
+ }
+ - {
+ name: 'Run Android tests (ndk r23)',
+ image: 'focal-android-ndk-r23',
+ profile: '',
+ script: './scripts/test-for-android.sh',
+ }
+ - {
name: 'Run Linux tests (Qt 4.8.7)',
image: 'focal-qt4',
profile: '',