Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
offa committed Jun 24, 2024
1 parent 2f58265 commit b30a21c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ class InfluxdbCxxConan(ConanFile):

def requirements(self):
self.requires("cpr/1.10.5")
print("---------------")
print(self.options.system)
print(self.options.boost)
print("---------------")
if not self.options.system and self.options.boost:
print("*** Install boost ***")
self.requires("boost/1.85.0")
if self.options.tests:
self.requires("catch2/3.6.0")
Expand Down
1 change: 0 additions & 1 deletion script/ci_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ conan install \
-of . \
-o "influxdb_cxx/*":system=True \
-o "influxdb_cxx/*":tests=True \
-o "influxdb_cxx/*":system=True \
-s compiler.cppstd=20 \
--build=missing \
..

0 comments on commit b30a21c

Please sign in to comment.