-
Notifications
You must be signed in to change notification settings - Fork 279
/
zipkin-cpp.yaml
49 lines (42 loc) · 1.05 KB
/
zipkin-cpp.yaml
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
package:
name: zipkin-cpp
version: 0.0_git20210228
epoch: 0
description: "OpenTracing implementation for Zipkin in C++."
copyright:
- license: Apache-2.0
environment:
contents:
packages:
- wolfi-base
- busybox
- ca-certificates-bundle
- build-base
- cmake
- curl
- curl-dev
- opentracing-cpp
pipeline:
- uses: fetch
with:
uri: https://github.com/rnburn/zipkin-cpp-opentracing/archive/f69593138ff84ca2f6bc115992e18ca3d35f344a.tar.gz
expected-sha256: 71de3d0658935db7ccea20e006b35e58ddc7e4c18878b9523f2addc2371e9270
strip-components: 1
- name: 'Configure ZIPKIN CPP VERSION'
runs: |
cat <<EOF > export.map
{
global:
OpenTracingMakeTracerFactory;
local: *;
};
EOF
cmake -DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=OFF \
-DBUILD_PLUGIN=ON \
-DBUILD_TESTING=OFF \
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true .
- uses: autoconf/make
- uses: autoconf/make-install
update:
enabled: false