CVE-2018-10919 tests: Add tests for guessing confidential attributes
[vlendec/samba-autobuild/.git] / .gitlab-ci-private.yml
1 # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
2
3 image: registry.gitlab.com/samba-team/samba:latest
4
5 before_script:
6   - echo "Build starting ..."
7
8 build_samba:
9   stage: build
10   tags:
11     - docker
12     - private
13   script:
14     # this one takes about 4 hours to finish
15     - python script/autobuild.py samba            --verbose --tail --testbase /tmp/samba-testbase
16
17 build_samba_others:
18   stage: build
19   tags:
20     - docker
21     - private
22   script:
23     - python script/autobuild.py samba-nopython   --verbose --tail --testbase /tmp/samba-testbase
24     - python script/autobuild.py samba-systemkrb5 --verbose --tail --testbase /tmp/samba-testbase
25     - python script/autobuild.py samba-xc         --verbose --tail --testbase /tmp/samba-testbase
26     - python script/autobuild.py samba-o3         --verbose --tail --testbase /tmp/samba-testbase
27     - python script/autobuild.py samba-libs       --verbose --tail --testbase /tmp/samba-testbase
28     - python script/autobuild.py samba-static     --verbose --tail --testbase /tmp/samba-testbase
29
30 build_ctdb:
31   stage: build
32   tags:
33     - docker
34     - private
35   script:
36     - python script/autobuild.py samba-ctdb       --verbose --tail --testbase /tmp/samba-testbase
37     - python script/autobuild.py ctdb             --verbose --tail --testbase /tmp/samba-testbase
38
39 build_others:
40   stage: build
41   tags:
42     - docker
43     - private
44   script:
45     - python script/autobuild.py ldb              --verbose --tail --testbase /tmp/samba-testbase
46     - python script/autobuild.py pidl             --verbose --tail --testbase /tmp/samba-testbase
47     - python script/autobuild.py replace          --verbose --tail --testbase /tmp/samba-testbase
48     - python script/autobuild.py talloc           --verbose --tail --testbase /tmp/samba-testbase
49     - python script/autobuild.py tdb              --verbose --tail --testbase /tmp/samba-testbase
50     - python script/autobuild.py tevent           --verbose --tail --testbase /tmp/samba-testbase
51
52 after_script:
53   - echo "Build finished!"