-
Notifications
You must be signed in to change notification settings - Fork 92
/
.gitlab-ci.yml
67 lines (63 loc) · 1.17 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
image: ultravideo/kvazaar_ci_base:latest
# build without crypto
build_no_crypto:
stage: build
script:
- mkdir build && cd build
- cmake ..
- make
artifacts:
paths:
- bin/uvgrtp
expire_in: 1 week
build_with_crypto:
stage: build
script:
- mkdir build && cd build
- apt -y install libcrypto++-dev
- cmake ..
- make
artifacts:
paths:
- bin/uvgrtp
expire_in: 1 week
tests_with_crypto:
stage: test
script:
- mkdir build && cd build
- apt -y install libcrypto++-dev
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- make
- cd test
- make
- ./uvgrtp_test
artifacts:
paths:
- bin/uvgrtp
expire_in: 1 week
examples_with_crypto:
stage: test
script:
- mkdir build && cd build
- apt -y install libcrypto++-dev
- cmake ..
- make
- cd examples
- make
- ./binding
- ./configuration
- ./custom_timestamps
- ./receiving_hook
- ./receiving_poll
- ./rtcp_hook
- ./sending
- ./sending_generic
- ./srtp_user
- ./zrtp_multistream
- ./srtp_zrtp
- ./sync_receiver
- ./sync_sender
artifacts:
paths:
- bin/uvgrtp
expire_in: 1 week