This commit is contained in:
Martin Hořeňovský 2018-03-07 11:01:06 +01:00
parent a3d3a633b2
commit d14b7563c2
9 changed files with 219 additions and 144 deletions

View file

@ -10,7 +10,7 @@ class CatchConanTest(ConanFile):
settings = "os", "compiler", "arch", "build_type"
username = getenv("CONAN_USERNAME", "philsquared")
channel = getenv("CONAN_CHANNEL", "testing")
requires = "Catch/2.1.2@%s/%s" % (username, channel)
requires = "Catch/2.2.0@%s/%s" % (username, channel)
def build(self):
cmake = CMake(self)