This repository has been archived by the owner on Jul 25, 2022. It is now read-only.
forked from ruby/ruby
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
83 lines (69 loc) · 2.23 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# 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.
# 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.
language: c
sudo: false
compiler:
- gcc
os:
- linux
- osx
env:
- CONFIG_OPTS=--with-omr-jit SPEC=linux_x86-64 LD_LIBRARY_PATH=$PWD OMR_JIT_OPTIONS=-Xjit:count=0
- CONFIG_OPTS=--with-omr-jit SPEC=osx_x86-64 LD_LIBRARY_PATH=$PWD OMR_JIT_OPTIONS=-Xjit:count=0
- CONFIG_OPTS=--without-omr-jit
matrix:
exclude:
- os: linux
env: CONFIG_OPTS=--with-omr-jit SPEC=osx_x86-64 LD_LIBRARY_PATH=$PWD OMR_JIT_OPTIONS=-Xjit:count=0
- os: osx
env: CONFIG_OPTS=--with-omr-jit SPEC=linux_x86-64 LD_LIBRARY_PATH=$PWD OMR_JIT_OPTIONS=-Xjit:count=0
before_install:
- "CONFIG_FLAG="
- "JOBS='-j 4'"
before_script:
- "uname -a"
- "uname -r"
- "rm -fr .ext autom4te.cache"
- "echo $TERM"
- "make -f common.mk BASERUBY=ruby MAKEDIRS='mkdir -p' srcdir=. update-config_files"
- "autoconf"
- "mkdir config_1st config_2nd"
- "./configure -C --disable-install-doc --with-gcc=$CC $CONFIG_FLAG $CONFIG_OPTS"
- "cp -pr config.status .ext/include config_1st"
- "make reconfig"
- "cp -pr config.status .ext/include config_2nd"
- "diff -ru config_1st config_2nd"
- "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'"
# - "make test-rubyspec MSPECOPT=-fm"
# Branch matrix. Not all branches are Travis-ready so we limit branches here.
branches:
only:
- ruby_2_4_omr_preliminary
- ruby_2_4_omr
# Local Variables:
# mode: YAML
# coding: utf-8-unix
# indent-tabs-mode: nil
# tab-width: 4
# fill-column: 79
# default-justification: full
# End: