File tree 5 files changed +59
-29
lines changed
5 files changed +59
-29
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ - job :
2
+ name : curl-fuzz-base
3
+ abstract : true
4
+ pre-run : zuul.d/playbooks/pre.yaml
5
+ run : zuul.d/playbooks/run.yaml
6
+ nodeset : ubuntu-focal
7
+
8
+ - job :
9
+ name : curl-fuzz-mainline
10
+ vars :
11
+ curl_test : mainline
12
+
13
+ - job :
14
+ name : curl-fuzz-code-coverage
15
+ vars :
16
+ curl_test : codecoverage
17
+
18
+ - job :
19
+ name : curl-fuzz-code-profile
20
+ vars :
21
+ curl_test : codeprofile
22
+
23
+ - job :
24
+ name : curl-fuzz-oss
25
+ vars :
26
+ curl_test : oss-fuzz
27
+ curl_script : travisoss
28
+
29
+ - project :
30
+ check :
31
+ jobs :
32
+ - curl-fuzz-mainline
33
+ - curl-fuzz-code-coverage
34
+ - curl-fuzz-code-profile
35
+ - curl-fuzz-oss
Original file line number Diff line number Diff line change
1
+ - hosts : all
2
+ roles :
3
+ - role : ensure-docker
4
+ when : curl_test == 'oss-fuzz'
5
+ tasks :
6
+ - name : Install dependencies
7
+ become : true
8
+ apt :
9
+ name :
10
+ - lcov
11
+ - clang-3.7
12
+ - libev-dev
13
+ - libc-ares-dev
14
+ - libstdc++-4.8-dev
15
+ - libidn2-0-dev
16
+ - libssh2-1-dev
17
+ - krb5-user
18
+ - pkg-config
Original file line number Diff line number Diff line change
1
+ - hosts : all
2
+ tasks :
3
+ - name : Run job
4
+ shell : ./{{ curl_script | default(curl_test) }}.sh
5
+ environment :
6
+ TRAVIS_BRANCH : " {{ zuul.projects.checkout }}"
You can’t perform that action at this time.
0 commit comments