summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJiayu Liu <Jimexist@users.noreply.github.com>2022-09-27 14:08:08 +0800
committerGitHub <noreply@github.com>2022-09-27 14:08:08 +0800
commit22b07813e4618dc1e43025994372663140874ab9 (patch)
tree54d8ed9856e2b046022f8eb3de0fde21ec2e1cd6 /.travis.yml
parentf31c588ea3e501bc0b93aa1e297ceb7fc1e35356 (diff)
downloadthrift-22b07813e4618dc1e43025994372663140874ab9.tar.gz
fix travis config where distro=bionic was missing (#2672)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 9b00fc61c..7cd5b2de1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -117,21 +117,23 @@ jobs:
# ------------------------- phase: autotools --------------------
# TODO: Remove them once migrated to CMake
+
- script: build/docker/run.sh
env:
- - JOB="Autotools (Ubuntu Bionic)"
+ - JOB="Autotools (Ubuntu Focal)"
+ - DISTRO=ubuntu-focal
- SCRIPT="autotools.sh"
- script: build/docker/run.sh
env:
- - JOB="Autotools (Ubuntu Xenial)"
- - DISTRO=ubuntu-xenial
+ - JOB="Autotools (Ubuntu Bionic)"
+ - DISTRO=ubuntu-bionic
- SCRIPT="autotools.sh"
- script: build/docker/run.sh
env:
- - JOB="Autotools (Ubuntu Focal)"
- - DISTRO=ubuntu-focal
+ - JOB="Autotools (Ubuntu Xenial)"
+ - DISTRO=ubuntu-xenial
- SCRIPT="autotools.sh"
# ------------------------- phase: cmake ------------------------