-
Notifications
You must be signed in to change notification settings - Fork 194
276 lines (247 loc) · 8.53 KB
/
manual.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
name: Manual
on:
workflow_dispatch:
inputs:
# Selelects the compiler to use, this will be used in the COMPILERS_MAP as the key to
# retrieve the corresponding cmake compiler options to pass to the action
compiler:
type: choice
description: 'Compiler Type [GCC|CLANG]'
options:
- 'GCC-9'
- 'GCC-10'
- 'CLANG-10'
- 'CLANG-11'
required: true
default: 'GCC-9'
native_backend:
description: 'Size of NativeInteger [32|64|128]'
type: choice
options:
- '32'
- '64'
- '128'
required: true
default: '64'
mb2_debug:
description: 'Run mb2_debug'
type: boolean
required: true
default: true
mb2_tcm:
description: 'Run mb2_tcm'
type: boolean
required: true
default: true
mb4_noflag:
description: 'Run mb4_noflag'
type: boolean
required: true
default: true
mb4_debug:
description: 'Run mb4_debug'
type: boolean
required: true
default: true
mb4_tcm:
description: 'Run mb4_tcm'
type: boolean
required: true
default: true
mb6_ntl_noflag:
description: 'Run mb6_ntl_noflag'
type: boolean
required: true
default: true
mb6_ntl_debug_tcm:
description: 'Run mb6_ntl_debug_tcm'
type: boolean
required: true
default: true
mb6_ntl_tcm:
description: 'Run mb6_ntl_tcm'
type: boolean
required: true
default: true
env:
# JSON map to convert input Compiler Type to correct cmake args, key is the input.compiler and the value is the cmake string to set the compiler for C and C++
COMPILERS_MAP: >-
{
"GCC-9" : "-DCMAKE_CXX_COMPILER=/usr/bin/g++-9 -DCMAKE_C_COMPILER=/usr/bin/gcc-9",
"CLANG-10" : "-DCMAKE_CXX_COMPILER=/usr/bin/clang++-10 -DCMAKE_C_COMPILER=/usr/bin/clang-10",
"GCC-10" : "-DCMAKE_CXX_COMPILER=/usr/bin/g++-10 -DCMAKE_C_COMPILER=/usr/bin/gcc-10",
"CLANG-11" : "-DCMAKE_CXX_COMPILER=/usr/bin/clang++-11 -DCMAKE_C_COMPILER=/usr/bin/clang-11",
}
jobs:
###############################################
#
# default jobs starts here
#
###############################################
default:
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: default
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: default
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }}
native_backend: ${{ github.event.inputs.native_backend }}
###############################################
#
# mb2_debug jobs starts here
#
###############################################
mb2_debug:
needs: default
if: ${{ github.event.inputs.mb2_debug == 'true' }}
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: mb2_debug
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: mb2_debug
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }} -DBUILD_EXTRAS=ON -DCMAKE_BUILD_TYPE=Debug -DMATHBACKEND=2
run_extras: true
native_backend: ${{ github.event.inputs.native_backend }}
###############################################
#
# mb2_tcm jobs starts here
#
###############################################
mb2_tcm:
needs: default
if: ${{ github.event.inputs.mb2_tcm == 'true' }}
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: mb2_tcm
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: mb2_tcm
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }} -DBUILD_EXTRAS=ON -DWITH_TCM=ON -DMATHBACKEND=2
with_tcm: true
run_extras: true
native_backend: ${{ github.event.inputs.native_backend }}
###############################################
#
# mb4_noflag jobs starts here
#
###############################################
mb4_noflag:
needs: default
if: ${{ github.event.inputs.mb4_noflag == 'true' }}
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: mb4_noflag
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: mb4_noflag
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }} -DBUILD_EXTRAS=ON -DMATHBACKEND=4
run_extras: true
native_backend: ${{ github.event.inputs.native_backend }}
###############################################
#
# mb4_debug jobs starts here
#
###############################################
mb4_debug:
needs: default
if: ${{ github.event.inputs.mb4_debug == 'true' }}
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: mb4_debug
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: mb4_debug
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }} -DBUILD_EXTRAS=ON -DCMAKE_BUILD_TYPE=Debug -DMATHBACKEND=4
run_extras: true
native_backend: ${{ github.event.inputs.native_backend }}
###############################################
#
# mb4_tcm jobs starts here
#
###############################################
mb4_tcm:
needs: default
if: ${{ github.event.inputs.mb4_tcm == 'true' }}
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: mb4_tcm
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: mb4_tcm
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }} -DBUILD_EXTRAS=ON -DWITH_TCM=ON -DMATHBACKEND=4
with_tcm: true
run_extras: true
native_backend: ${{ github.event.inputs.native_backend }}
###############################################
#
# mb6_ntl_noflag jobs starts here
#
###############################################
mb6_ntl_noflag:
needs: default
if: ${{ github.event.inputs.mb6_ntl_noflag == 'true' }}
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: mb6_ntl_noflag
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: mb6_ntl_noflag
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }} -DBUILD_EXTRAS=ON -DWITH_NTL=ON -DMATHBACKEND=6
run_extras: true
native_backend: ${{ github.event.inputs.native_backend }}
###############################################
#
# mb6_ntl_tcm jobs starts here
#
###############################################
mb6_ntl_tcm:
needs: default
if: ${{ github.event.inputs.mb6_ntl_tcm == 'true' }}
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: mb6_ntl_tcm
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: mb6_ntl_tcm
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }} -DBUILD_EXTRAS=ON -DWITH_NTL=ON -DWITH_TCM=ON -DMATHBACKEND=6
with_tcm: true
run_extras: true
native_backend: ${{ github.event.inputs.native_backend }}
###############################################
#
# mb6_ntl_debug_tcm jobs starts here
#
###############################################
mb6_ntl_debug_tcm:
needs: default
if: ${{ github.event.inputs.mb6_ntl_debug_tcm == 'true' }}
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: mb6_ntl_debug_tcm
uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci
with:
module_name: mb6_ntl_debug_tcm
cmake_args: ${{ fromJson(env.COMPILERS_MAP)[github.event.inputs.compiler] }} -DBUILD_EXTRAS=ON -DCMAKE_BUILD_TYPE=Debug -DWITH_NTL=ON -DWITH_TCM=ON -DMATHBACKEND=6
with_tcm: true
run_extras: true
native_backend: ${{ github.event.inputs.native_backend }}