-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
139 lines (128 loc) · 4.23 KB
/
.gitlab-ci.yml
File metadata and controls
139 lines (128 loc) · 4.23 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
workflow:
rules:
- if: '$CI_COMMIT_TAG'
- if: '$CI_COMMIT_BRANCH == "release"'
- if: '$CI_COMMIT_BRANCH == "dev"'
- if: '$CI_COMMIT_BRANCH == "main"'
- when: never
variables:
DOCKER_CONFIG: /kaniko/.docker/
stages:
- release
- build
release_outlook_plugin:
stage: release
image: node:20
before_script:
- cd jitsi-web-overlay-outlook-plugin
- npm ci
script:
- npx semantic-release
only:
- release
variables:
GITLAB_TOKEN: $CI_JOB_TOKEN
release_global:
stage: release
image: node:20
before_script:
- npm ci
script:
- npx semantic-release
only:
- release
variables:
GITLAB_TOKEN: $CI_JOB_TOKEN
# --------------------------------------------------
# Template Kaniko commun
# --------------------------------------------------
.kaniko-build:
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: ["/busybox/sh", "-c"]
stage: build
before_script:
- mkdir -p /kaniko/.docker
- |
cat > /kaniko/.docker/config.json <<EOF
{
"auths": {
"${CI_REGISTRY}": {
"username": "${CI_REGISTRY_USER}",
"password": "${CI_REGISTRY_PASSWORD}"
}
}
}
EOF
# --------------------------------------------------
# Build BACKEND
# --------------------------------------------------
docker-build-backend:
extends: .kaniko-build
needs: []
rules:
- if: '$CI_COMMIT_TAG'
- if: '$CI_COMMIT_BRANCH == "release"'
- if: '$CI_COMMIT_BRANCH == "main"'
- if: '$CI_COMMIT_BRANCH == "dev"'
script:
- |
SHA_TAG="sha-${CI_COMMIT_SHORT_SHA}"
if [ -n "$CI_COMMIT_TAG" ]; then
VERSION="${CI_COMMIT_TAG#v}"
DESTINATIONS="\
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-backend:${VERSION} \
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-backend:latest \
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-backend:${SHA_TAG}"
elif echo "$CI_COMMIT_BRANCH" | grep -q 'release'; then
VERSION="${CI_COMMIT_BRANCH#release/}"
DESTINATIONS="\
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-backend:${VERSION}-rc \
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-backend:${SHA_TAG}"
else
DESTINATIONS="\
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-backend:${CI_COMMIT_BRANCH} \
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-backend:${SHA_TAG}"
fi
/kaniko/executor \
--context "${CI_PROJECT_DIR}/jitsi-web-overlay-backend" \
--dockerfile "${CI_PROJECT_DIR}/jitsi-web-overlay-backend/Dockerfile" \
$DESTINATIONS \
--single-snapshot
# --------------------------------------------------
# Build FRONTEND
# --------------------------------------------------
docker-build-frontend:
extends: .kaniko-build
needs: []
rules:
- if: '$CI_COMMIT_TAG'
- if: '$CI_COMMIT_BRANCH == "release"'
- if: '$CI_COMMIT_BRANCH == "main"'
- if: '$CI_COMMIT_BRANCH == "dev"'
script:
- |
SHA_TAG="sha-${CI_COMMIT_SHORT_SHA}"
if [ -n "$CI_COMMIT_TAG" ]; then
VERSION="${CI_COMMIT_TAG#v}"
DESTINATIONS="\
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-frontend:${VERSION} \
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-frontend:latest \
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-frontend:${SHA_TAG}"
elif echo "$CI_COMMIT_BRANCH" | grep -q 'release'; then
VERSION="${CI_COMMIT_BRANCH#release/}"
DESTINATIONS="\
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-frontend:${VERSION}-rc \
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-frontend:${SHA_TAG}"
else
DESTINATIONS="\
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-frontend:${CI_COMMIT_BRANCH} \
--destination ${CI_REGISTRY_IMAGE}/jitsi-web-overlay-frontend:${SHA_TAG}"
fi
/kaniko/executor \
--context "${CI_PROJECT_DIR}/jitsi-web-overlay-frontend" \
--dockerfile "${CI_PROJECT_DIR}/jitsi-web-overlay-frontend/Dockerfile" \
$DESTINATIONS \
--build-arg VITE_API_URL=${API_URL} \
--build-arg VITE_APP_TEMPLATE=${APP_TEMPLATE} \
--single-snapshot