-
Notifications
You must be signed in to change notification settings - Fork 81
/
.gitlab-ci-tunnel.yml
59 lines (43 loc) · 1.47 KB
/
.gitlab-ci-tunnel.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
#################################################
# Base configuration
#################################################
variables:
GIT_SUBMODULE_STRATEGY: recursive
MAKEFILE_JOBS: 5
CCACHE_SIZE: 3G
#Lime X3DH activated by default, if there is a problem, see the default
#build options in CMakeBuilder
#Do not set CMAKE_OPTIONS here as it may be overwritten by child jobs
#################################################
# Platforms to test
#################################################
.job-prepare:
only:
- schedules
except:
variables:
- $FAST_LINUX_TESTS
retry:
max: 2
when: runner_system_failure
include:
- '.gitlab-ci-files/rules.yml'
- '.gitlab-ci-files/.docker-images.yml'
- '.gitlab-ci-files/.set_parallel_level.yml'
- '.gitlab-ci-files/linux-prepare.yml'
- '.gitlab-ci-files/android/builds.yml'
- '.gitlab-ci-files/android/tests.yml'
- '.gitlab-ci-files/iOS/builds.yml'
- '.gitlab-ci-files/iOS/tests.yml'
- '.gitlab-ci-files/linux-desktop/linux-desktop.yml'
# - '.gitlab-ci-files/linux-desktop/linux-desktop-archlinux-latest.yml'
- '.gitlab-ci-files/linux-desktop/linux-desktop-centos7.yml'
- '.gitlab-ci-files/linux-desktop/linux-desktop-debian10.yml'
- '.gitlab-ci-files/linux-desktop/linux-desktop-ubuntu-rolling.yml'
- '.gitlab-ci-files/macosx/builds.yml'
- '.gitlab-ci-files/macosx/tests.yml'
- '.gitlab-ci-files/windows/builds.yml'
- '.gitlab-ci-files/windows/tests.yml'
stages:
- build
- test