Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update conanio Docker images and add a comment about them #94

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions {{cookiecutter.project_slug}}/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,16 @@ variables:
- ctest

build-and-test:gcc:
image: conanio/gcc9
# Note: You can use your own Docker images here that e.g. include relevant
# dependencies and development tools. We choose images provided by conan
# as these are well maintained and try to provide a good C++ developement
# environment with both gcc and clang. For more information, see here:
# https://github.com/conan-io/conan-docker-tools
image: conanio/gcc11
<<: *template

build-and-test:clang:
image: conanio/clang10
image: conanio/clang11
<<: *template

{% if cookiecutter.codecovio == "Yes" -%}
Expand Down