-
Notifications
You must be signed in to change notification settings - Fork 15
/
.gitlab-ci.yml
129 lines (102 loc) · 2.21 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
image: gcc
before_script:
- JOBS=$(expr $(nproc) + 1)
- apt-get update
- apt-get install -y libsctp-dev
build:
stage: build
script:
- mkdir build
- cd build
- ../configure
- make -j${JOBS}
artifacts:
paths:
- build
build-static:
stage: build
script:
- mkdir build-static
- cd build-static
- ../configure --enable-static --disable-shared
- make -j${JOBS}
artifacts:
paths:
- build
- build-static
test-build:
stage: test
needs: ["build"]
script:
- cd build
- openssl genrsa -out src/private.pem 2048
- openssl rsa -in src/private.pem -outform PEM -pubout -out src/public.pem
- make check
test-build-static:
stage: test
needs: ["build-static"]
script:
- cd build-static
- openssl genrsa -out src/private.pem 2048
- openssl rsa -in src/private.pem -outform PEM -pubout -out src/public.pem
- make check
test-tcp-localhost:
stage: test
needs: ["build"]
script:
- cd build
- ./src/iperf3 -s -D
- ./src/iperf3 -V -c localhost
test-tcp-localhost-static:
stage: test
needs: ["build-static"]
script:
- cd build-static
- ./src/iperf3 -s -D
- ./src/iperf3 -V -c localhost
test-udp-localhost:
stage: test
needs: ["build"]
script:
- cd build
- ./src/iperf3 -s -D
- ./src/iperf3 -V -u -c localhost
test-udp-localhost-static:
stage: test
needs: ["build-static"]
script:
- cd build-static
- ./src/iperf3 -s -D
- ./src/iperf3 -V -u -c localhost
test-sctp-localhost:
stage: test
needs: ["build"]
allow_failure: true
script:
- cd build
- ./src/iperf3 -s -D
- ./src/iperf3 -V --sctp -c localhost
test-sctp-localhost-static:
stage: test
needs: ["build-static"]
allow_failure: true
script:
- cd build-static
- ./src/iperf3 -s -D
- ./src/iperf3 -V --sctp -c localhost
test-vsock-localhost:
stage: test
needs: ["build"]
allow_failure: true
script:
- cd build
- ./src/iperf3 --vsock -s -D
- ./src/iperf3 -V --vsock -c 1
test-vsock-localhost-static:
stage: test
needs: ["build-static"]
allow_failure: true
script:
- cd build-static
- ./src/iperf3 --vsock -s -D
- ./src/iperf3 -V --vsock -c 1