From 744d87d180938ad3a1cf519cf1331a7434b8e9d6 Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Sun, 19 Apr 2020 13:16:04 -0700 Subject: [PATCH] Add eoan and focul build --- .ci/docker/ubuntu-eoan | 1 + .ci/docker/ubuntu-focal | 3 +++ .travis.yml | 15 ++++++++++++++- 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .ci/docker/ubuntu-eoan create mode 100644 .ci/docker/ubuntu-focal diff --git a/.ci/docker/ubuntu-eoan b/.ci/docker/ubuntu-eoan new file mode 100644 index 0000000..af943c6 --- /dev/null +++ b/.ci/docker/ubuntu-eoan @@ -0,0 +1 @@ +FROM ubuntu:eoan diff --git a/.ci/docker/ubuntu-focal b/.ci/docker/ubuntu-focal new file mode 100644 index 0000000..3f0289f --- /dev/null +++ b/.ci/docker/ubuntu-focal @@ -0,0 +1,3 @@ +FROM ubuntu:focal + +ENV DEBIAN_FRONTEND=noninteractive diff --git a/.travis.yml b/.travis.yml index 0484d2d..0ad6004 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: cpp sudo: required -dist: trusty +dist: bionic matrix: include: @@ -44,6 +44,19 @@ matrix: - BOOST_PYTHON_NUMPY_EIGEN_PYTHON_VERSION="3.6" - DOCKER_FILE="ubuntu-bionic" services: docker + - os: linux + compiler: gcc + env: + - BUILD_NAME=UBUNTU_EOAN_3_7 + - BOOST_PYTHON_NUMPY_EIGEN_PYTHON_VERSION="3.7" + - DOCKER_FILE="ubuntu-eoan" + - os: linux + compiler: gcc + env: + - BUILD_NAME=UBUNTU_FOCAL_3_8 + - BOOST_PYTHON_NUMPY_EIGEN_PYTHON_VERSION="3.8" + - DOCKER_FILE="ubuntu-focal" + services: docker - os: osx osx_image: xcode9.3 compiler: clang