Skip to content

Commit b30a21c

Browse files
committed
Test
1 parent 2f58265 commit b30a21c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

conanfile.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ class InfluxdbCxxConan(ConanFile):
1818

1919
def requirements(self):
2020
self.requires("cpr/1.10.5")
21+
print("---------------")
22+
print(self.options.system)
23+
print(self.options.boost)
24+
print("---------------")
2125
if not self.options.system and self.options.boost:
26+
print("*** Install boost ***")
2227
self.requires("boost/1.85.0")
2328
if self.options.tests:
2429
self.requires("catch2/3.6.0")

script/ci_setup.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ conan install \
2222
-of . \
2323
-o "influxdb_cxx/*":system=True \
2424
-o "influxdb_cxx/*":tests=True \
25-
-o "influxdb_cxx/*":system=True \
2625
-s compiler.cppstd=20 \
2726
--build=missing \
2827
..

0 commit comments

Comments
 (0)