From 7f44d04021a77d55b6244a6a79287465ed57bc43 Mon Sep 17 00:00:00 2001 From: Tobias Frust Date: Tue, 9 Jul 2019 14:59:55 +0200 Subject: [PATCH] add gcc 7 to GitLab CI test matrix --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ad1e71d..8c2b387 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,10 @@ build:gcc:latest: build:gcc:8: image: gcc:8 <<: *build + +build:gcc:7: + image: gcc:7 + <<: *build test:gcc:latest: image: gcc:latest @@ -30,3 +34,9 @@ test:gcc:8: <<: *test dependencies: - build:gcc:8 + +test:gcc:7: + image: gcc:7 + <<: *test + dependencies: + - build:gcc:7