forked from SGL-UT/GPSTk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
executable file
·76 lines (65 loc) · 965 Bytes
/
.gitlab-ci.yml
File metadata and controls
executable file
·76 lines (65 loc) · 965 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
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
#.yml file for Gitlab-CI support
stages:
- build
- test
- deploy
build_debian:
stage: build
tags:
- debian
script:
- ./build.sh -ev
test_debian:
stage: test
tags:
- debian
script:
- ./build.sh -evt
build_solaris:
stage: build
tags:
- solaris
script:
- ./build.sh -evx
test_solaris:
stage: test
tags:
- solaris
script:
- ./build.sh -evxt
build_redhat:
stage: build
tags:
- redhat
script:
- ./build.sh -ev -b ./build-gpstk-redhat
test_redhat:
stage: test
tags:
- redhat
script:
- ./build.sh -evt -b ./test-gpstk-redhat
build_osx:
stage: build
tags:
- osx
script:
- ./build.sh -ev -b ./build-gpstk-osx
test_osx:
stage: test
tags:
- osx
script:
- ./build.sh -evt -b ./test-gpstk-osx
build_windows:
stage: build
tags:
- windows
script:
- build.sh -evx
test_windows:
stage: test
tags:
- windows
script:
- build.sh -evxt