blob: 4a6e5036f80edef9d1f7af00bc201436de060d16 (
plain)
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
|
include:
- '/.gitlab-ci.yml'
.private_template:
extends: .shared_template
tags:
- docker
- private
before_script:
- uname -a
- lsb_release -a
- mount
- df -h
- free -h
samba:
extends: .private_template
# this one takes about 4 hours to finish
samba-py2:
extends: .private_template
# this one takes about 4 hours to finish
samba-fileserver:
extends: .private_template
# this one takes about 1 hours to finish
samba-ad-dc:
extends: .private_template
# this one takes about 1 hours to finish
samba-ad-dc-py2:
extends: .private_template
# this one takes about 1 hours to finish
samba-nt4:
extends: .private_template
|