forked from alejandroalffer/cheqd-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
49 lines (45 loc) · 1.19 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
stages:
- dockerbuild-pre
- dockerbuild
- build-pre
- build
- test
- package
- publish
- release
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- cache/
variables:
staticLibVersion: "20190607"
rustVersion: "1.54.0"
libsovtokenVersion: "1.0.5"
libsovtokenVersionExtra: "15"
indyBranch: 'rc' # RPM stream
indySimpleVersion: "1.16.0" # RPM package name
indyFullVersion: "1.16.0-170" # RPM directory
indyFullDebVersion: "1.16.0~170" # DEB package name
androidSovtokenArtifact: "libsovtoken_1.0.5-201912281255-e39929e_all.zip"
iosSovtokenArtifact: "libsovtoken_1.0.5-201912281252-e39929e_all.zip"
DEV_BASE_VERSION: "0.0.2"
DEV_VERSION: '$DEV_BASE_VERSION-$CI_PIPELINE_IID'
workflow:
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS'
when: never
- if: '$CI_COMMIT_BRANCH'
- if: '$CI_COMMIT_TAG'
include:
- '/ci/jobs/common.yml'
- '/ci/jobs/java-wrapper.yml'
- '/ci/jobs/dotnet-wrapper.yml'
- '/ci/jobs/ubuntu.yml'
- '/ci/jobs/ios.yml'
- '/ci/jobs/macos.yml'
- '/ci/jobs/android.yml'
- '/ci/jobs/nodejs-wrapper.yml'
- '/ci/jobs/python-wrapper.yml'
- '/ci/jobs/libindy.yml'