-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathproject.xml
104 lines (87 loc) · 4.69 KB
/
project.xml
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
<project
name = "fty-common-mlm"
description = "Provides common Malamute and ZeroMQ tools for agents"
script = "zproject.gsl"
email = "EatonIPCOpenSource@eaton.com"
url = "https://42ity.org"
license = "GPL-2.0+"
repository = "https://github.com/42ity/fty-common-mlm"
header = "fty_common_mlm.h"
>
<target name = "debian" />
<target name = "redhat" />
<target name = "travis" >
<option name = "recursive_dependencies" value = "true"/>
<!-- option name = "clangformat_implem" value = "autotools" / -->
<option name = "use_cmake" value = "0" />
<option name = "dist" value = "trusty" />
<option name = "shadow_gcc" value = "2" />
<!-- option name = "clangformat_require_good" value = "1" / -->
<option name = "clangformat_allow_failures" value = "1" />
<option name = "use_pkg_deps_prereqs_source" value = "0" />
<option name = "test_memcheck" value = "0" />
<option name = "require_gitignore" value = "1" />
</target>
<target name = "jenkins" >
<option name = "agent_label" value = "devel-image && x86_64" />
<option name = "triggers_pollSCM" value = "H/2 * * * *" />
<option name = "test_cppcheck" value = "1" />
<option name = "build_docs" value = "1" />
<option name = "dist_docs" value = "1" />
<option name = "test_memcheck" value = "0" />
<!-- Try to avoid avalanche rebuilds of same code on our CI -->
<option name = "use_earlymilestone" value = "1" />
<option name = "use_deploymilestone" value = "1" />
<option name = "use_build_nonconcurrent" value = "1" />
<option name = "use_checkout_explicit" value = "1" />
</target>
<include filename = "license.xml" />
<version major = "1" minor = "0" patch = "0" />
<abi current = "1" revision = "0" age = "0" />
<classfilename use-cxx = "true" source-extension = "cc" header-extension = "h"
pretty-print = "no" keep-tree = "true" />
<use project = "czmq"
repository = "https://github.com/42ity/czmq.git"
min_major = "3" min_minor = "0" min_patch = "2" >
<use project = "libzmq"
repository = "https://github.com/42ity/libzmq.git">
<use project = "libsodium" prefix = "sodium"
repository = "https://github.com/42ity/libsodium.git"
test = "sodium_init"
/>
</use>
</use>
<use project = "malamute" min_major = "1" test = "mlm_server_test"
repository = "https://github.com/42ity/malamute.git"/>
<use project = "cxxtools"
test = "cxxtools::Utf8Codec::Utf8Codec"
header = "cxxtools/allocator.h"
repository = "https://github.com/42ity/cxxtools.git"/>
<!-- Note: pure C projects should use fty-log/fty_logger.h, C++ use fty_log.h -->
<use project = "fty-common-logging" libname = "libfty_common_logging"
header = "fty_log.h"
repository = "https://github.com/42ity/fty-common-logging.git"
test = "fty_common_logging_selftest" >
</use>
<use project = "fty-common" libname = "libfty_common" header = "fty_common.h"
repository = "https://github.com/42ity/fty-common.git"
test = "fty_common_selftest" >
</use>
<use project = "openssl"
header = "openssl/sha.h"
debian_name = "libssl-dev"
/>
<header name = "fty_common_mlm_guards" stable = "1" > C++ wrapper for czmq / malamute objects with automatic cleanup </header>
<class name = "fty_common_mlm_subprocess" selftest = "0" stable = "1">C++ Wrapper around cxxtools::Fork</class>
<class name = "fty_common_mlm_agent" selftest = "0" stable = "1" >Helper C++ class to build a malamute Agent (server)</class>
<class name = "fty_common_mlm_uuid" selftest = "0" stable = "1" />
<class name = "fty_common_mlm_tntmlm" stable = "1">malamute client to help MAILBOX REQUEST/REPLY with a backend Agent</class>
<class name = "fty_common_mlm_utils" selftest = "1" stable = "1" />
<class name = "fty_common_mlm_zconfig" selftest = "1" stable = "1" >C++ Wrapper Class fro zconfig</class>
<!-- Note: Helper implementing fty::SyncClient -->
<class name = "fty_common_mlm_sync_client" selftest = "1" stable = "1">Simple malamute client for synchronous request</class>
<!-- Note: Helper implementing fty::StreamSubscriber and fty::StreamPublisher -->
<class name = "fty_common_mlm_stream_client" selftest = "1" stable = "1">Simple malamute client for stream</class>
<!-- Note: Helper implementing fty::SyncServer -->
<class name = "fty_common_mlm_basic_mailbox_server" selftest = "1" stable = "1">Basic malamute synchronous mailbox server </class>
</project>