simple-c2pa

This is a fork of https://gitlab.com/guardianproject/proofmode/simple-c2pa
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/simple-c2pa.git
Log | Files | Refs | README | LICENSE

commit eb66cdac0b91be56a6069a885888f9bea9e7789d
parent 83726a893d3fc4a2f119f7b0a67805b68a6114e8
Author: Darren Clarke <darren@redaranj.com>
Date:   Wed,  8 Nov 2023 13:47:59 +0100

Update CI structure

Diffstat:
M.gitlab-ci.yml | 19++++++++++++-------
Mmobile/android/.gitlab-ci.yml | 2+-
Mmobile/apple/.gitlab-ci.yml | 4++--
3 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -1,7 +1,12 @@ -include: - - project: "mobile/apple" - ref: "main" - file: "mobile/.gitlab-ci-apple.yml" - - project: "mobile/android" - ref: "main" - file: "mobile/.gitlab-ci.android.yml" +stages: + - triggers + +trigger_apple: + stage: triggers + trigger: + include: "mobile/apple/.gitlab-ci.yml" + +trigger_android: + stage: triggers + trigger: + include: "mobile/android/.gitlab-ci.yml" diff --git a/mobile/android/.gitlab-ci.yml b/mobile/android/.gitlab-ci.yml @@ -16,7 +16,7 @@ before_script: - rustup override set $RUST_VERSION - cargo install cross -build: +build_android: stage: build script: - ./mobile/android/build.sh diff --git a/mobile/apple/.gitlab-ci.yml b/mobile/apple/.gitlab-ci.yml @@ -11,14 +11,14 @@ variables: - mkdir -p ./mobile/apple/out - touch ./mobile/apple/out/test123.txt -build: +build_apple: extends: - .macos_saas_runners stage: build script: - echo "running scripts in the build job" -test: +test_apple: extends: - .macos_saas_runners stage: test