2012-08-21 12:10:37 +04:00
|
|
|
# Copyright (C) 2011 Urabe, Shyouhei. All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is a part of the programming language Ruby. Permission is hereby
|
|
|
|
# granted, to either redistribute or modify this file, provided that the
|
|
|
|
# conditions mentioned in the file COPYING are met. Consult the file for
|
|
|
|
# details.
|
2012-05-21 07:45:52 +04:00
|
|
|
|
2012-08-21 12:10:37 +04:00
|
|
|
# This is a Travis-CI build configuration file. The list of configurations
|
|
|
|
# available is located in
|
|
|
|
#
|
|
|
|
# http://about.travis-ci.org/docs/user/build-configuration/
|
|
|
|
#
|
|
|
|
# and as Ruby itself is a project written in C language,
|
|
|
|
#
|
|
|
|
# http://about.travis-ci.org/docs/user/languages/c/
|
|
|
|
#
|
|
|
|
# is also a good place to look at.
|
2011-11-26 10:26:44 +04:00
|
|
|
|
2012-08-21 12:10:37 +04:00
|
|
|
language: c
|
2016-09-28 04:49:16 +03:00
|
|
|
|
2016-01-13 05:04:18 +03:00
|
|
|
sudo: false
|
2012-08-21 12:10:37 +04:00
|
|
|
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
|
2014-09-20 06:55:27 +04:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
|
2012-08-21 12:10:37 +04:00
|
|
|
before_install:
|
2015-03-03 06:16:32 +03:00
|
|
|
- "CONFIG_FLAG="
|
2016-01-13 11:22:18 +03:00
|
|
|
- "JOBS='-j 4'"
|
2012-08-21 12:10:37 +04:00
|
|
|
|
|
|
|
before_script:
|
2014-04-23 08:48:52 +04:00
|
|
|
- "uname -a"
|
2014-04-23 09:31:08 +04:00
|
|
|
- "uname -r"
|
2014-08-20 12:37:54 +04:00
|
|
|
- "rm -fr .ext autom4te.cache"
|
2016-01-13 06:22:36 +03:00
|
|
|
- "echo $TERM"
|
2015-01-19 16:44:32 +03:00
|
|
|
- "make -f common.mk BASERUBY=ruby MAKEDIRS='mkdir -p' srcdir=. update-config_files"
|
2012-08-21 12:10:37 +04:00
|
|
|
- "autoconf"
|
2013-08-19 03:31:26 +04:00
|
|
|
- "mkdir config_1st config_2nd"
|
2015-03-03 06:16:32 +03:00
|
|
|
- "./configure -C --disable-install-doc --with-gcc=$CC $CONFIG_FLAG"
|
2013-08-19 03:37:30 +04:00
|
|
|
- "cp -pr config.status .ext/include config_1st"
|
2013-08-19 03:31:26 +04:00
|
|
|
- "make reconfig"
|
|
|
|
- "cp -pr config.status .ext/include config_2nd"
|
2015-03-02 07:35:12 +03:00
|
|
|
- "diff -ru config_1st config_2nd"
|
2017-03-24 05:44:21 +03:00
|
|
|
- "make touch-unicode-files"
|
2017-03-24 06:42:28 +03:00
|
|
|
- "make after-update BASERUBY=ruby UNICODE_FILES=."
|
2016-01-12 20:10:27 +03:00
|
|
|
- "make -s $JOBS"
|
2016-01-13 07:02:31 +03:00
|
|
|
- "make update-rubyspec"
|
2017-04-07 19:08:49 +03:00
|
|
|
- "if [ -n \"${RUBYSPEC_PULL_REQUEST}\" ]\n
|
|
|
|
then\n
|
|
|
|
merge=\n
|
|
|
|
for rev in ${RUBYSPEC_PULL_REQUEST//,/ }; do merge=\"$merge +refs/pull/$rev/merge:\"; done\n
|
|
|
|
git -C spec/rubyspec -c user.email=none -c user.name=none pull --no-edit origin $merge\n
|
|
|
|
fi"
|
2016-09-28 04:49:16 +03:00
|
|
|
|
2013-04-18 17:55:45 +04:00
|
|
|
script:
|
2017-03-30 10:25:13 +03:00
|
|
|
- "make -s test TESTOPTS=--color=never"
|
|
|
|
- "make -s test-all TESTOPTS='-q -j3 --color=never --job-status=normal'"
|
|
|
|
- "make -s test-rubyspec MSPECOPT=-fm"
|
2012-08-21 12:10:37 +04:00
|
|
|
|
|
|
|
# Branch matrix. Not all branches are Travis-ready so we limit branches here.
|
2013-04-18 22:04:11 +04:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- trunk
|
2014-04-22 05:07:29 +04:00
|
|
|
- ruby_2_1
|
|
|
|
- ruby_2_2
|
2015-12-24 21:37:43 +03:00
|
|
|
- ruby_2_3
|
2016-12-23 19:09:09 +03:00
|
|
|
- ruby_2_4
|
2016-03-07 11:17:02 +03:00
|
|
|
- /^feature\//
|
|
|
|
- /^bug\//
|
2012-08-03 11:41:18 +04:00
|
|
|
|
2012-08-21 12:10:37 +04:00
|
|
|
# We want to be notified when something happens.
|
2013-04-18 22:04:11 +04:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
2016-10-05 15:36:40 +03:00
|
|
|
- "chat.freenode.net#ruby-core"
|
|
|
|
- "chat.freenode.net#ruby-ja"
|
2013-04-18 22:04:11 +04:00
|
|
|
on_success: change # [always|never|change] # default: always
|
2016-01-12 20:10:27 +03:00
|
|
|
on_failure: always # [always|never|change] # default: always
|
2013-04-18 22:04:11 +04:00
|
|
|
template:
|
|
|
|
- "%{message} by @%{author}: See %{build_url}"
|
2012-08-21 12:10:37 +04:00
|
|
|
|
2015-03-20 11:43:23 +03:00
|
|
|
email:
|
|
|
|
- ko1c-failure@atdot.net
|
|
|
|
- shibata.hiroshi@gmail.com
|
|
|
|
|
2012-08-21 12:10:37 +04:00
|
|
|
# Local Variables:
|
|
|
|
# mode: YAML
|
|
|
|
# coding: utf-8-unix
|
|
|
|
# indent-tabs-mode: nil
|
|
|
|
# tab-width: 4
|
|
|
|
# fill-column: 79
|
|
|
|
# default-justification: full
|
|
|
|
# End:
|