[Android] Retry nightly builds once when pipeline fails

Nicolas Pomepuy git at videolan.org
Thu Nov 20 06:45:31 UTC 2025


vlc-android | branch: master | Nicolas Pomepuy <nicolas at videolabs.io> | Thu Nov  6 09:37:00 2025 +0100| [b6c207c22cf53618b12f6aaad10adfa4696638d1] | committer: Nicolas Pomepuy

Retry nightly builds once when pipeline fails

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

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

diff --git a/buildsystem/gitlab/.gitlab-ci.yml b/buildsystem/gitlab/.gitlab-ci.yml
index 2ac23c337d..83a9b233f7 100644
--- a/buildsystem/gitlab/.gitlab-ci.yml
+++ b/buildsystem/gitlab/.gitlab-ci.yml
@@ -231,6 +231,7 @@ build-ml-x86_64-v4:
 # Nightly builds: build native & app code, and ship the APK as artifact
 nightly-arm64:
     extends: .build-all-base
+    retry: 1
     rules:
         - if: '$CI_PIPELINE_SOURCE == "schedule" && $VLC4 != "true"'
     needs:
@@ -244,6 +245,7 @@ nightly-arm64:
 
 nightly-armv7:
     extends: .build-all-base
+    retry: 1
     image:
         name: $VLC_ANDROID_IMAGE_30
     rules:
@@ -259,6 +261,7 @@ nightly-armv7:
 
 nightly-x86:
     extends: .build-all-base
+    retry: 1
     image:
         name: $VLC_ANDROID_IMAGE_30
     rules:
@@ -274,6 +277,7 @@ nightly-x86:
 
 nightly-x86_64:
     extends: .build-all-base
+    retry: 1
     rules:
         - if: '$CI_PIPELINE_SOURCE == "schedule" && $VLC4 != "true"'
     needs:
@@ -288,6 +292,7 @@ nightly-x86_64:
 # Weekly builds: build native & app code, and ship the APK as artifact for vlc4
 nightly-arm64-v4:
     extends: .build-all-base
+    retry: 1
     rules:
         - if: '$CI_PIPELINE_SOURCE == "schedule" && $VLC4 == "true"'
     needs:
@@ -302,6 +307,7 @@ nightly-arm64-v4:
 
 nightly-armv7-v4:
     extends: .build-all-base
+    retry: 1
     rules:
         - if: '$CI_PIPELINE_SOURCE == "schedule" && $VLC4 == "true"'
     needs:
@@ -316,6 +322,7 @@ nightly-armv7-v4:
 
 nightly-x86-v4:
     extends: .build-all-base
+    retry: 1
     rules:
         - if: '$CI_PIPELINE_SOURCE == "schedule" && $VLC4 == "true"'
     needs:
@@ -330,6 +337,7 @@ nightly-x86-v4:
 
 nightly-x86_64-v4:
     extends: .build-all-base
+    retry: 1
     rules:
         - if: '$CI_PIPELINE_SOURCE == "schedule" && $VLC4 == "true"'
     needs:



More information about the Android mailing list