Add ruby-2.3 testing to Travis
This commit is contained in:
parent
2817e02e35
commit
42c140053e
2 changed files with 16 additions and 0 deletions
|
|
@ -98,6 +98,9 @@ matrix:
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
os: linux
|
os: linux
|
||||||
env: SWIGLANG=ruby
|
env: SWIGLANG=ruby
|
||||||
|
- compiler: gcc
|
||||||
|
os: linux
|
||||||
|
env: SWIGLANG=ruby VER=2.3
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
os: linux
|
os: linux
|
||||||
env: SWIGLANG=scilab
|
env: SWIGLANG=scilab
|
||||||
|
|
@ -162,6 +165,10 @@ matrix:
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
os: linux
|
os: linux
|
||||||
env: SWIGLANG=python SWIG_FEATURES=-O
|
env: SWIGLANG=python SWIG_FEATURES=-O
|
||||||
|
# Not quite working yet
|
||||||
|
- compiler: gcc
|
||||||
|
os: linux
|
||||||
|
env: SWIGLANG=ruby VER=2.3
|
||||||
before_install:
|
before_install:
|
||||||
- date -u
|
- date -u
|
||||||
- uname -a
|
- uname -a
|
||||||
|
|
|
||||||
|
|
@ -85,6 +85,15 @@ case "$SWIGLANG" in
|
||||||
"r")
|
"r")
|
||||||
sudo apt-get -qq install r-base
|
sudo apt-get -qq install r-base
|
||||||
;;
|
;;
|
||||||
|
"ruby")
|
||||||
|
if [[ "$VER" ]]; then
|
||||||
|
sudo apt-get install python-software-properties
|
||||||
|
sudo add-apt-repository -y ppa:brightbox/ruby-ng
|
||||||
|
sudo apt-get -qq update
|
||||||
|
sudo apt-get -qq install ruby2.3 ruby2.3-dev
|
||||||
|
CONFIGOPTS+=("--with-ruby=ruby${VER}");
|
||||||
|
fi
|
||||||
|
;;
|
||||||
"scilab")
|
"scilab")
|
||||||
sudo apt-get -qq install scilab
|
sudo apt-get -qq install scilab
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue