2015-09-18 23:00:39 +08:00
|
|
|
sudo: true
|
2016-11-07 08:42:30 +08:00
|
|
|
|
2016-11-28 00:56:14 +08:00
|
|
|
language: java
|
2016-11-28 01:13:36 +08:00
|
|
|
|
2017-10-29 04:13:43 +08:00
|
|
|
before_cache:
|
|
|
|
- rm -rf $HOME/.m2/repository/org/antlr
|
2017-10-13 00:46:38 +08:00
|
|
|
cache:
|
2017-10-27 03:12:21 +08:00
|
|
|
timeout: 600
|
2017-10-13 00:46:38 +08:00
|
|
|
directories:
|
|
|
|
- $HOME/.m2
|
2017-10-27 03:12:21 +08:00
|
|
|
- $HOME/Library/Caches/Antlr4
|
2017-10-13 00:46:38 +08:00
|
|
|
- $HOME/Library/Caches/Homebrew
|
|
|
|
|
2017-10-13 12:46:20 +08:00
|
|
|
stages:
|
2021-01-26 12:56:16 +08:00
|
|
|
# - smoke-test
|
|
|
|
# - main-test
|
2017-10-13 12:46:20 +08:00
|
|
|
- extended-test
|
|
|
|
|
2016-11-07 08:42:30 +08:00
|
|
|
matrix:
|
2016-11-28 02:22:18 +08:00
|
|
|
include:
|
2020-10-04 13:19:21 +08:00
|
|
|
- os: linux
|
|
|
|
dist: xenial
|
|
|
|
compiler: clang
|
|
|
|
env:
|
|
|
|
- TARGET=swift
|
|
|
|
- GROUP=ALL
|
|
|
|
stage: extended-test
|
2016-11-28 02:22:18 +08:00
|
|
|
|
2016-11-28 00:56:14 +08:00
|
|
|
before_install:
|
2017-09-29 06:40:35 +08:00
|
|
|
- f="./.travis/before-install-$TRAVIS_OS_NAME-$TARGET.sh"; ! [ -x "$f" ] || "$f"
|
2016-11-07 08:42:30 +08:00
|
|
|
|
2015-06-23 08:13:20 +08:00
|
|
|
script:
|
2018-11-11 05:30:33 +08:00
|
|
|
- |
|
|
|
|
cd runtime-testsuite;
|
2020-10-04 11:28:40 +08:00
|
|
|
travis_wait 40 ../.travis/run-tests-$TARGET.sh
|
2020-10-04 11:23:54 +08:00
|
|
|
rc=$?
|
|
|
|
cat target/surefire-reports/*.dumpstream || true
|
2018-11-11 05:30:33 +08:00
|
|
|
exit $rc
|