commit 6d390b252ea64801c47ce287cbcff24c4b5119f9
parent eb66cdac0b91be56a6069a885888f9bea9e7789d
Author: Darren Clarke <darren@redaranj.com>
Date: Wed, 8 Nov 2023 13:54:40 +0100
Update artificts key
Diffstat:
2 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/mobile/android/.gitlab-ci.yml b/mobile/android/.gitlab-ci.yml
@@ -1,3 +1,6 @@
+stages:
+ - build
+
image: docker:latest
variables:
@@ -20,7 +23,6 @@ build_android:
stage: build
script:
- ./mobile/android/build.sh
-
-artifacts:
- paths:
- - ./mobile/android/out/
+ artifacts:
+ paths:
+ - ./mobile/android/out/
diff --git a/mobile/apple/.gitlab-ci.yml b/mobile/apple/.gitlab-ci.yml
@@ -1,3 +1,7 @@
+stages:
+ - build
+ - test
+
variables:
HOMEBREW_NO_AUTO_UPDATE: 1
@@ -17,6 +21,9 @@ build_apple:
stage: build
script:
- echo "running scripts in the build job"
+ artifacts:
+ paths:
+ - ./mobile/apple/out/
test_apple:
extends:
@@ -24,7 +31,3 @@ test_apple:
stage: test
script:
- echo "running scripts in the test job"
-
-artifacts:
- paths:
- - ./mobile/apple/out/