travisci_logo Travis CI

You can use the Travis CI cloud service to automatically build and test your project in Linux/MacOS environments in the cloud. It is free for OSS projects, and offers an easy integration with GitHub, so builds can be automatically fired in Travis-CI after a git push to GitHub.

You can use Travis-CI both for:

  • Building and testing your project, which manages dependencies with Conan, and probably a conanfile.txt file.

  • Building and testing Conan binary packages for a given Conan package recipe (with a conanfile.py).

Installing dependencies and building your project

A very common use case is to build your project after Conan takes care of installing your dependencies. Doing this process in Travis CI is quite convenient as you can do it with conan install.

To enable Travis CI support, you need to create a .travis.yml file and paste this code in it:

os: linux
language: python
python: "3.7"
dist: xenial
compiler:
  - gcc
install:
# Install conan
  - pip install conan
# Automatic detection of your arch, compiler, etc.
  - conan user
script:
# Download dependencies and build project
  - conan install .
# Call your build system
  - cmake . -G "Unix Makefiles"
  - cmake --build .
# Run your tests
  - ctest .

Travis will install the gcc compiler and the conan client and will execute the conan install command using the requirements and generators indicated in your conanfile.py or conanfile.txt. Then, the script section installs the requirements and then you can use your build system to compile the project (using make in this example).

Creating, testing and uploading Conan binary packages

You can also use Travis CI to automate building new Conan binary packages with every change you push to GitHub. You can probably set up your own way, but Conan has some utilities to help in the process.

The command conan new has arguments to create a default working .travis.yml file. Other setups might be possible, but for this example we are assuming that you are using GitHub and also uploading your final packages to your Artifactory CE server.

You could follow these steps:

  1. First, create an empty GitHub repository. Let’s call it “hello”, for creating a “hello world” package. GitHub allows creating it with a Readme and .gitignore.

  2. Create a Conan repository in your Artifactory CE, and get its URL (“Set me up”). We will call it UPLOAD_URL

  3. Activate the repo in your Travis account, so it is built when we push changes to it.

  4. Under Travis More Options -> Settings->Environment Variables, add the CONAN_LOGIN_USERNAME and CONAN_PASSWORD environment variables with the Artifactory CE user and password.

  5. Clone the repo: git clone <your_repo/hello> && cd hello.

  6. Create the package: conan new hello/0.1@myteam/testing -t -s -cilg -cis -ciu=UPLOAD_URL

  7. You can inspect the created files: both .travis.yml, .travis/run.sh, and .travis/install.sh and the build.py script, that is used by conan-package-tools utility to split different builds with different configurations in different Travis CI jobs.

  8. You can test locally, before pushing, with conan test.

  9. Add the changes, commit and push: git add . && git commit -m "first commit" && git push.

  10. Go to Travis and see the build, with the different jobs.

  11. When it has finished, go to your Artifactory CE repository, you should see there the uploaded packages for different configurations.

  12. Check locally, searching in Artifactory CE: conan search hello/0.1@myteam/testing -r=myremote.

If something fails, please report an issue in the conan-package-tools GitHub repository: https://github.com/conan-io/conan-package-tools