aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-28 01:49:16 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-28 01:49:16 +0000
commitaf653bf3f8ea0a7bb61ec58ba50cc31e53c1c1e1 (patch)
treeba78b9e5f120b712e0e51f9b3347f56a020f5b0f /.travis.yml
parent2931e59007385514fe8d3e56eba851a29baf43ee (diff)
downloadruby-af653bf3f8ea0a7bb61ec58ba50cc31e53c1c1e1.tar.gz
* .travis.yml: delete comments. They were outdated. [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56279 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 2 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 24ce0c9113..1024db8b77 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,29 +16,20 @@
#
# is also a good place to look at.
-# Language specification.
language: c
+
sudo: false
-# Compilers. Several compilers are provided in Travis, so we try them all.
-# The value set here is visible via $CC environment variable.
compiler:
- gcc
os:
- linux
-# Dependencies. Some header files are missing in a Travis' worker VM, so we
-# have to install them. The "1.9.1" here is OK. It is the most adopted
-# version string for Debian/Ubuntu, and no dependencies have been changed so
-# far since the 1.9.1 release.
before_install:
- "CONFIG_FLAG="
- "JOBS='-j 4'"
-# Script is where the test runs. Note we just do "make test", not other tests
-# like test-all, test-rubyspec. This is because they take too much time,
-# enough for Travis to shut down the VM as being stalled.
before_script:
- "uname -a"
- "uname -r"
@@ -55,6 +46,7 @@ before_script:
- "make after-update BASERUBY=ruby"
- "make -s $JOBS"
- "make update-rubyspec"
+
script:
- "make test TESTOPTS=--color=never"
- "make test-all TESTOPTS='-q -j3 --color=never --job-status=normal'"