-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
94 lines (87 loc) · 1.64 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
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
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- test_qt5
- test_qt61
- test_qt62
- test_qt66
- test_qt67
- test_qt68
Test_qt5:
stage: test_qt5
image:
name: "carlonluca/qt-dev:5.15.2"
entrypoint: [""]
script:
- cd LQObjectSerializerTest
- mkdir build
- cd build
- cmake ../qt5
- make
- ./LQObjectSerializerTest
- ./LGithubTestCase
Text_qt61:
stage: test_qt61
image:
name: "carlonluca/qt-dev:6.1.2"
entrypoint: [""]
script:
- cd LQObjectSerializerTest
- mkdir build
- cd build
- cmake ../qt6
- make
- ./LQObjectSerializerTest
- ./LGithubTestCase
Text_qt62:
stage: test_qt62
image:
name: "carlonluca/qt-dev:6.2.3"
entrypoint: [""]
script:
- cd LQObjectSerializerTest
- mkdir build
- cd build
- cmake ../qt6
- make
- ./LQObjectSerializerTest
- ./LGithubTestCase
Test_qt66:
stage: test_qt66
image:
name: "carlonluca/qt-dev:6.6.1"
entrypoint: [""]
script:
- cd LQObjectSerializerTest
- mkdir build
- cd build
- cmake ../qt6
- make
- ./LQObjectSerializerTest
- ./LGithubTestCase
Test_qt67:
stage: test_qt67
image:
name: "carlonluca/qt-dev:6.7.3"
entrypoint: [""]
script:
- cd LQObjectSerializerTest
- mkdir build
- cd build
- cmake ../qt6
- make
- ./LQObjectSerializerTest
- ./LGithubTestCase
Test_qt68:
stage: test_qt68
image:
name: "carlonluca/qt-dev:6.8.1"
entrypoint: [""]
script:
- cd LQObjectSerializerTest
- mkdir build
- cd build
- cmake ../qt6
- make
- ./LQObjectSerializerTest
- ./LGithubTestCase