-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitlab-ci.yml
68 lines (59 loc) · 1.29 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
variables:
GIT_STRATEGY: none
stages:
- build
push-to-transifex:
stage: build
only:
- schedules
image:
name: $REGISTRY_URI/infra/transifex-lwc:latest
parallel:
matrix:
- LWC_BRANCH: master
LOCALE_BRANCH: master
- LWC_BRANCH: release_3_7
LOCALE_BRANCH: lizmap_3_7
- LWC_BRANCH: release_3_8
LOCALE_BRANCH: lizmap_3_8
script:
- export TX_TOKEN=${TRANSIFEX_TOKEN}
- from_lwc_to_transifex ${LWC_BRANCH} ${LOCALE_BRANCH}
tags:
- factory-dind
pull-from-transifex-master:
stage: build
when: manual
only:
- schedules
image:
name: $REGISTRY_URI/infra/transifex-lwc:latest
script:
- export TX_TOKEN=${TRANSIFEX_TOKEN}
- from_transifex_to_lwc master master
tags:
- factory-dind
pull-from-transifex-3-7:
stage: build
when: manual
only:
- schedules
image:
name: $REGISTRY_URI/infra/transifex-lwc:latest
script:
- export TX_TOKEN=${TRANSIFEX_TOKEN}
- from_transifex_to_lwc release_3_7 lizmap_3_7
tags:
- factory-dind
pull-from-transifex-3-8:
stage: build
when: manual
only:
- schedules
image:
name: $REGISTRY_URI/infra/transifex-lwc:latest
script:
- export TX_TOKEN=${TRANSIFEX_TOKEN}
- from_transifex_to_lwc release_3_8 lizmap_3_8
tags:
- factory-dind