[Android] CI: fix vlc4-ml builds

Duncan McNamara git at videolan.org
Thu Feb 8 07:29:22 UTC 2024


vlc-android | branch: master | Duncan McNamara <dcn.mcnamara at gmail.com> | Tue Feb  6 16:57:34 2024 +0100| [83274da10013c28c8a7b3f4cfbc6c02feed267dc] | committer: Nicolas Pomepuy

CI: fix vlc4-ml builds

The introduction of the EXTRA_BUILD_PARAM for the v4 ml builds
overrides the EXTRA_BUILD_PARAM at the build-ml-all, removing the -ml
parameter and building the entire app

> https://code.videolan.org/videolan/vlc-android/commit/83274da10013c28c8a7b3f4cfbc6c02feed267dc
---

 buildsystem/gitlab/.gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/buildsystem/gitlab/.gitlab-ci.yml b/buildsystem/gitlab/.gitlab-ci.yml
index ff8c432af8..2b18c7deaf 100644
--- a/buildsystem/gitlab/.gitlab-ci.yml
+++ b/buildsystem/gitlab/.gitlab-ci.yml
@@ -214,25 +214,25 @@ build-ml-arm64-v4:
     extends: .build-ml-base
     variables:
         ARCH: arm64
-        EXTRA_BUILD_PARAM: -vlc4
+        EXTRA_BUILD_PARAM: -ml -vlc4
 
 build-ml-armv7-v4:
     extends: .build-ml-base
     variables:
         ARCH: arm
-        EXTRA_BUILD_PARAM: -vlc4
+        EXTRA_BUILD_PARAM: -ml -vlc4
 
 build-ml-x86-v4:
     extends: .build-ml-base
     variables:
         ARCH: x86
-        EXTRA_BUILD_PARAM: -vlc4
+        EXTRA_BUILD_PARAM: -ml -vlc4
 
 build-ml-x86_64-v4:
     extends: .build-ml-base
     variables:
         ARCH: x86_64
-        EXTRA_BUILD_PARAM: -vlc4
+        EXTRA_BUILD_PARAM: -ml -vlc4
 
 # Nightly builds: build native & app code, and ship the APK as artifact
 nightly-arm64:



More information about the Android mailing list