[Android] Create a new noTV CI job
Nicolas Pomepuy
git at videolan.org
Thu Jun 13 07:30:02 UTC 2024
vlc-android | branch: refs/tags/3.6.0-TEST | Nicolas Pomepuy <nicolas at videolabs.io> | Thu Jun 13 09:17:04 2024 +0200| [ec54d44c6fb1ea80462671107dd1d0a5028871c4] | committer: Nicolas Pomepuy
Create a new noTV CI job
> https://code.videolan.org/videolan/vlc-android/commit/ec54d44c6fb1ea80462671107dd1d0a5028871c4
---
buildsystem/gitlab/.gitlab-ci.yml | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/buildsystem/gitlab/.gitlab-ci.yml b/buildsystem/gitlab/.gitlab-ci.yml
index 55b1bc8422..317979a049 100644
--- a/buildsystem/gitlab/.gitlab-ci.yml
+++ b/buildsystem/gitlab/.gitlab-ci.yml
@@ -487,7 +487,6 @@ release:
- ./buildsystem/compile.sh --init
- ./gradlew assembleRelease
- ./gradlew bundleRelease
- - ./gradlew assembleNoTv
artifacts:
name: "${CI_COMMIT_TAG}"
paths:
@@ -496,3 +495,20 @@ release:
# - application/app/build/outputs/mapping/release/mapping.txt
expire_in: 2 weeks
+release_notv:
+ stage: build
+ rules:
+ - if: '$CI_COMMIT_TAG =~ /^(\d+\.)?(\d+\.)?(\*|\d+)/'
+ needs:
+ - job: "webserver-build"
+ script:
+ - ./buildsystem/compile.sh --init
+ - ./gradlew assembleNoTv
+ artifacts:
+ name: "${CI_COMMIT_TAG}-notv"
+ paths:
+ - application/app/build/outputs/apk/release/VLC-Android-*.apk
+ - application/app/build/outputs/bundle/release/*.aab
+# - application/app/build/outputs/mapping/release/mapping.txt
+ expire_in: 2 weeks
+
More information about the Android
mailing list