diff options
author | James McCoy <jamessan@jamessan.com> | 2020-03-22 13:35:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 13:35:51 -0400 |
commit | 61d4b81d21d4907b97c706866c1ce663c417f433 (patch) | |
tree | 06fc89eba29e9aab3dd4df5feea15720a0c2b30b | |
parent | 87d892afa0475644e91d9c8a57b7c35491c4dc32 (diff) | |
parent | ca828eaed66af0592bcf606f08c8b2875b0e7c48 (diff) | |
download | rneovim-61d4b81d21d4907b97c706866c1ce663c417f433.tar.gz rneovim-61d4b81d21d4907b97c706866c1ce663c417f433.tar.bz2 rneovim-61d4b81d21d4907b97c706866c1ce663c417f433.zip |
Merge pull request #12026 from jamessan/s390x-travis
Add big-endian, s390x job for Travis
-rw-r--r-- | .travis.yml | 21 | ||||
-rwxr-xr-x | ci/install.sh | 4 |
2 files changed, 22 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 85eca601a3..b920f70f45 100644 --- a/.travis.yml +++ b/.travis.yml @@ -77,7 +77,6 @@ addons: - gdb - gperf - language-pack-tr - - libc6-dev-i386 - libtool-bin - locales - ninja-build @@ -160,6 +159,26 @@ jobs: # Minimum required CMake. - CMAKE_URL=https://cmake.org/files/v2.8/cmake-2.8.12-Linux-i386.sh - *common-job-env + - name: big-endian + os: linux + arch: s390x + compiler: gcc + env: + - FUNCTIONALTEST=functionaltest-lua + - CMAKE_FLAGS="$CMAKE_FLAGS -DPREFER_LUA=ON" + - DEPS_CMAKE_FLAGS="$DEPS_CMAKE_FLAGS -DUSE_BUNDLED_LUAJIT=OFF" + - *common-job-env + addons: + apt: + packages: + - *common-apt-packages + - gettext + - python-pip + - python3-pip + - python-setuptools + - python3-setuptools + - python-dev + - python3-dev - name: clang-tsan os: linux compiler: clang diff --git a/ci/install.sh b/ci/install.sh index 769f00c5ba..a4dfc87a1b 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -14,9 +14,9 @@ fi # Use default CC to avoid compilation problems when installing Python modules. echo "Install neovim module for Python 3." -CC=cc python3 -m pip -q install --upgrade pynvim +CC=cc python3 -m pip -q install --user --upgrade pynvim echo "Install neovim module for Python 2." -CC=cc python2 -m pip -q install --upgrade pynvim +CC=cc python2 -m pip -q install --user --upgrade pynvim echo "Install neovim RubyGem." gem install --no-document --version ">= 0.8.0" neovim |