From 829cf1821b0b0985a10b57b5a830ade8e4fa7a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Sat, 17 Oct 2020 14:00:17 +0200 Subject: [PATCH] Adding Ubuntu 18.04 & 20.04 to travis builds --- .travis.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.travis.yml b/.travis.yml index 02d8bfb5..bf59f3f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,38 @@ matrix: env: - BUILD_TYPE="Debug" + - name: "Ubuntu 18.04 - gcc (Release)" + os: linux + dist: bionic + sudo: required + compiler: gcc + env: + - BUILD_TYPE="Release" + + - name: "Ubuntu 18.04 - gcc (Debug)" + os: linux + dist: bionic + sudo: required + compiler: gcc + env: + - BUILD_TYPE="Debug" + + - name: "Ubuntu 20.04 - gcc (Release)" + os: linux + dist: focal + sudo: required + compiler: gcc + env: + - BUILD_TYPE="Release" + + - name: "Ubuntu 20.04 - gcc (Debug)" + os: linux + dist: focal + sudo: required + compiler: gcc + env: + - BUILD_TYPE="Debug" + - name: "Ubuntu 16.04 - gcc-5.4 with coverage" os: linux dist: xenial