diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-02-06 23:43:16 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-02-06 23:43:16 -0500 |
commit | 5e876388e5b14856c9ea8cf60f01d0a9887f854d (patch) | |
tree | b793cf4ebf5da904b8ee91cb9df95c711bf66892 | |
parent | b12e5fa8bd5f988621f37a75a4aea09a8dc82c5f (diff) | |
download | rneovim-5e876388e5b14856c9ea8cf60f01d0a9887f854d.tar.gz rneovim-5e876388e5b14856c9ea8cf60f01d0a9887f854d.tar.bz2 rneovim-5e876388e5b14856c9ea8cf60f01d0a9887f854d.zip |
CI/travis: get MinGW from our mirror.
sourceforge download has been failing randomly, which causes build
failures.
-rwxr-xr-x | .ci/install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.ci/install.sh b/.ci/install.sh index ad3ef1b8b7..fb5d1c09c1 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -14,7 +14,9 @@ elif [[ "${BUILD_MINGW}" == ON ]]; then # binutils-mingw-w64-i686 gcc-mingw-w64-i686 g++-mingw-w64-i686 mingw-w64-dev mingw-w64-tools echo "Downloading MinGW..." - curl -sSL "http://downloads.sourceforge.net/project/mingw-w64/Toolchains%20targetting%20Win32/Personal%20Builds/rubenvb/gcc-4.8-release/i686-w64-mingw32-gcc-4.8.0-linux64_rubenvb.tar.xz" | tar xJf - -C "${HOME}/.local" + curl -sSL "https://github.com/neovim/deps/raw/master/opt/i686-w64-mingw32-gcc-4.8.0-linux64_rubenvb.tar.xz" \ + | tar xJf - -C "${HOME}/.local" + fi # Set CC to default to avoid compilation problems |