You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* ruby-bigendian:
Travis ruby s390x (big endian) architecture testing
Install libpcre3-dev for Linux builds
Don't fail the build if CPU model or memory can't be detected
Switch one of Travis CI Ruby builds to use s390x arch
Copy file name to clipboardExpand all lines: .travis.yml
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -419,6 +419,11 @@ matrix:
419
419
env: SWIGLANG=python GCC=9 CPP17=1 PY3=3 VER=3.8
420
420
sudo: required
421
421
dist: xenial
422
+
- os: linux
423
+
arch: s390x
424
+
env: SWIGLANG=ruby CPP11=1
425
+
sudo: required
426
+
dist: xenial
422
427
- compiler: gcc
423
428
os: osx
424
429
env: SWIGLANG=
@@ -468,6 +473,12 @@ matrix:
468
473
osx_image: xcode10.2
469
474
470
475
allow_failures:
476
+
# li_std_wstring failure see https://github.com/swig/swig/pull/1803
477
+
- os: linux
478
+
arch: s390x
479
+
env: SWIGLANG=ruby CPP11=1
480
+
sudo: required
481
+
dist: xenial
471
482
# Newer version of D not yet working/supported
472
483
- compiler: gcc
473
484
os: linux
@@ -495,7 +506,7 @@ matrix:
495
506
before_install:
496
507
- date -u
497
508
- uname -a
498
-
- if test "$TRAVIS_OS_NAME" = "linux"; then lscpu && cat /proc/cpuinfo | grep "model name" && cat /proc/meminfo | grep MemTotal; fi
509
+
- if test "$TRAVIS_OS_NAME" = "linux"; then lscpu; grep "model name" /proc/cpuinfo || echo 'Unknown CPU model'; grep "MemTotal" /proc/meminfo || echo 'Unknown system memory amount'; fi
499
510
- if test "$TRAVIS_OS_NAME" = "osx"; then sysctl -a | grep brand_string; fi
500
511
# Travis overrides CC environment with compiler predefined values
501
512
- if test -n "$GCC"; then export CC="gcc-$GCC" && export CXX="g++-$GCC"; fi
0 commit comments