summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-10 10:03:21 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-10 11:16:13 +0900
commit72797acf6e16911a4a0345d23685070a0f993732 (patch)
tree9ed0efd662caf47d5cd95bf2082a40051f7fece9 /.travis.yml
parent9cd9eca3793ecf47f0e5971efaf99b514b72be94 (diff)
downloadruby-72797acf6e16911a4a0345d23685070a0f993732.tar.gz
Set `TEST_ALL` options first to show in the summary page
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index c84cb1a6d7..9732123e4d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,6 +26,10 @@ cache:
env:
global:
+ # The tests skipped in `make test-all`.
+ - TEST_ALL_SKIPPED_TESTS=
+ # The tests executed separately by `make test-all`.
+ - TEST_ALL_SEPARATED_TESTS=
# Reset timestamps early
- _=$(touch NEWS && find . -type f -exec touch -r NEWS {} +)
- CONFIGURE_TTY=no
@@ -38,12 +42,8 @@ env:
- SETARCH=
- RUBY_PREFIX=/tmp/ruby-prefix
- GEMS_FOR_TEST='timezone tzinfo'
- # The tests skipped in `make test-all`.
- - TEST_ALL_SKIPPED_TESTS=
# Run the separated tests with allowing failures.
- RUN_SEPARATED_TESTS=true
- # The tests executed separately by `make test-all`.
- - TEST_ALL_SEPARATED_TESTS=
# https://github.com/travis-ci/travis-build/blob/e411371dda21430a60f61b8f3f57943d2fe4d344/lib/travis/build/bash/travis_apt_get_options.bash#L7
- travis_apt_get_options='--allow-downgrades --allow-remove-essential --allow-change-held-packages'
- travis_apt_get_options="-yq --no-install-suggests --no-install-recommends $travis_apt_get_options"