-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
39 lines (36 loc) · 829 Bytes
/
.gitlab-ci.yml
File metadata and controls
39 lines (36 loc) · 829 Bytes
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
stages:
- build
.curl-tpl: &curl-tpl
variables:
GIT_STRATEGY: none
tags:
- curl
check_author:
image: docker-registry.linagora.com:5000/lgs-releases/gitlab-integrity-checks:latest
stage: build
variables:
GIT_DEPTH: "1"
tags:
- ultralight
script:
- check_author.py check "$GITLAB_USER_EMAIL" "$GITLAB_USER_NAME" --no-accents
except:
refs:
- master@linagora/lgs/linshare/products/linshare-ui-admin
- tags@linagora/lgs/linshare/products/linshare-ui-admin
- /^release-.*/@linagora/lgs/linshare/products/linshare-ui-admin
retry:
max: 2
when:
- runner_system_failure
- stuck_or_timeout_failure
build:
<<: *curl-tpl
stage: build
script:
- echo skip
retry:
max: 2
when:
- runner_system_failure
- stuck_or_timeout_failure