diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2018-07-26 15:14:37 +0100 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2018-07-27 16:54:35 +0100 |
commit | 465f8b5163cdee708a6ee81a7c210b2a8baedde4 (patch) | |
tree | 6e5f82983119e8f07a8b6406b6274f10d21639cb /script | |
parent | f7bb4ff80bfa5e5173232685b13f143b572f36de (diff) | |
download | libgit2-465f8b5163cdee708a6ee81a7c210b2a8baedde4.tar.gz |
ci: move appveyor to new scripts
Diffstat (limited to 'script')
-rwxr-xr-x | script/appveyor-mingw.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/script/appveyor-mingw.sh b/script/appveyor-mingw.sh deleted file mode 100755 index 6b2a9425e..000000000 --- a/script/appveyor-mingw.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -set -e -cd `dirname "$0"`/.. -if [ "$ARCH" = "i686" ]; then - f=i686-4.9.2-release-win32-sjlj-rt_v3-rev1.7z - if ! [ -e $f ]; then - curl -LsSO http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/$f - fi - 7z x $f > /dev/null - export PATH=`pwd`/mingw32/bin:$PATH -else - f=x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z - if ! [ -e $f ]; then - curl -LsSO http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/$f - fi - 7z x $f > /dev/null - export PATH=`pwd`/mingw64/bin:$PATH -fi -cd build -gcc --version -cmake --version -cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON -D BUILD_EXAMPLES=ON .. -G"$GENERATOR" -cmake --build . --config RelWithDebInfo |