-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathconfig.yml
145 lines (131 loc) · 3.44 KB
/
config.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
version: 2
jobs:
common_linux: &common_linux
docker:
- image: ghcr.io/openwall/john-ci:fedora.32
steps:
- checkout
- run:
name: Building JtR
command: .circleci/circle-ci.sh BUILD
- run:
name: Testing JtR
command: .circleci/circle-ci.sh TEST
wine-32bits:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:fedora.30
environment:
TARGET_ARCH: "i686"
WINE: "wine"
OMP_NUM_THREADS: 2
wine-64bits:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:fedora.32
environment:
TARGET_ARCH: "x86_64"
WINE: "wine"
OMP_NUM_THREADS: 2
no-plugs:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:opencl
environment:
OMP_NUM_THREADS: 2
PLUGS: "none"
UNIT_TESTS: "yes"
BUILD_OPTS: "--enable-werror CPPFLAGS=-DDYNAMIC_DISABLED"
encoding-cpu:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:fedora.latest
environment:
OMP_NUM_THREADS: 2
ENCODING_TEST: "cpu"
encoding-opencl:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:opencl18
environment:
OMP_NUM_THREADS: 2
ENCODING_TEST: "opencl"
asan:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:fedora.latest
environment:
OMP_NUM_THREADS: 2
ASAN_TEST: "yes"
BUILD_OPTS: "--enable-asan --disable-opencl"
test-full:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:fedora.latest
environment:
ASAN_TEST: "yes"
FULL_TEST: "yes"
BUILD_OPTS: "--enable-asan --disable-openmp --disable-opencl"
fast-formats-omp:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:fedora.latest
environment:
OMP_NUM_THREADS: 2
ASAN_TEST: "yes"
FULL_TEST: "yes"
BUILD_OPTS: "--enable-asan --enable-openmp-for-fast-formats --disable-opencl"
fast-formats-omp-x-non-SIMD:
<<: *common_linux
docker:
- image: ghcr.io/openwall/john-ci:fedora.latest
environment:
OMP_NUM_THREADS: 2
ASAN_TEST: "yes"
FULL_TEST: "yes"
BUILD_OPTS: "--enable-asan --enable-openmp-for-fast-formats --disable-simd --disable-opencl"
arm:
machine:
image: ubuntu-2204:current
environment:
DEBIAN_FRONTEND: "noninteractive"
resource_class: arm.medium
steps:
- checkout
- run:
name: Preparing
command: |
uname -a
sudo apt update && sudo apt install -y zlib1g-dev libgmp-dev libpcap-dev libbz2-dev
- run:
name: Building JtR
command: .circleci/circle-ci.sh BUILD
- run:
name: Testing JtR
command: .circleci/circle-ci.sh TEST
workflows:
version: 2
build:
jobs:
- asan
- arm
- encoding-cpu
- wine-64bits
- no-plugs
- encoding-opencl:
requires:
- encoding-cpu
- wine-32bits:
requires:
- wine-64bits
- more-tests:
type: approval
- test-full:
requires:
- more-tests
- fast-formats-omp:
requires:
- more-tests
- fast-formats-omp-x-non-SIMD:
requires:
- more-tests