-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeson_options.txt
More file actions
22 lines (17 loc) · 1.15 KB
/
meson_options.txt
File metadata and controls
22 lines (17 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# cross building
option('go_os', type: 'string', value: '', description: 'Go host OS')
option('go_arch', type: 'string', value: '', description: 'Go host arch')
option('sysroot', type: 'string', value: '', description: 'Cross builds sysroot')
# karaberus tests
option('s3_tests', type: 'feature', value: 'enabled', description: 'Run S3 tests')
option('network_tests', type: 'feature', value: 'enabled', description: 'Run tests that require an internet connection')
# karaberus options
option('builtin_oidc_env', type: 'boolean', value: true, description: 'Set up a default OIDC configuration for zitadel-karaberus')
option('builtin_s3_env', type: 'boolean', value: true, description: 'Set up a default S3 configuration for gofakes3')
# build helpers
option('test', type: 'boolean', value: true, description: 'Build tests')
option('no_native_deps', type: 'boolean', value: false, description: 'Build without native deps')
# slow tests
option('golangci-lint', type: 'boolean', value: true, description: 'Run errcheck test')
# build metadata
option('repository_url', type: 'string', value: 'https://github.com/Japan7/karaberus', description: 'URL of the code repository')