summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-03 21:40:16 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-03 21:40:16 +0200
commit435f9f06cac02c1d2e5c52435d36e80f4ad2a8bd (patch)
tree134b8a742fcab1b3941fe9270322dd424c96abd2 /.travis.yml
parent9ee3d161f715de9e68ba60c17e3893107bb7c42a (diff)
patch 8.1.1619: tests are not run with GUI on Travisv8.1.1619
Problem: Tests are not run with GUI on Travis. Solution: Add a testgui job. (Ozaki Kiichi, closes #4609)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 8e122404f1..b669a908f6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -214,5 +214,12 @@ matrix:
- *linux-huge
- *asan
after_failure: *asan_symbolize
+ - <<: *linux
+ name: huge-testgui+coverage/gcc
+ compiler: gcc
+ env:
+ - *linux-huge
+ - TEST="-C src testgui"
+ after_success: *coverage
# vim:set sts=2 sw=2 tw=0 et: