mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-23 05:38:41 +00:00
Merge pull request #3671 from libgit2/cmn/remove-mingw32
Remove CI support for mingw32
This commit is contained in:
commit
fa31ee6835
@ -37,9 +37,6 @@ matrix:
|
|||||||
- os: osx
|
- os: osx
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
include:
|
include:
|
||||||
- compiler: i586-mingw32msvc-gcc
|
|
||||||
env: OPTIONS="-DCMAKE_TOOLCHAIN_FILE=../script/toolchain-mingw32.cmake" SKIP_TESTS=1
|
|
||||||
os: linux
|
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
env: COVERITY=1
|
env: COVERITY=1
|
||||||
os: linux
|
os: linux
|
||||||
|
@ -12,16 +12,10 @@ environment:
|
|||||||
ARCH: 32
|
ARCH: 32
|
||||||
- GENERATOR: "Visual Studio 11 Win64"
|
- GENERATOR: "Visual Studio 11 Win64"
|
||||||
ARCH: 64
|
ARCH: 64
|
||||||
- GENERATOR: "MSYS Makefiles"
|
|
||||||
ARCH: 32
|
|
||||||
- GENERATOR: "MSYS Makefiles"
|
- GENERATOR: "MSYS Makefiles"
|
||||||
ARCH: i686 # this is for 32-bit MinGW-w64
|
ARCH: i686 # this is for 32-bit MinGW-w64
|
||||||
- GENERATOR: "MSYS Makefiles"
|
- GENERATOR: "MSYS Makefiles"
|
||||||
ARCH: 64
|
ARCH: 64
|
||||||
matrix:
|
|
||||||
allow_failures:
|
|
||||||
- GENERATOR: "MSYS Makefiles"
|
|
||||||
ARCH: 32
|
|
||||||
cache:
|
cache:
|
||||||
- i686-4.9.2-release-win32-sjlj-rt_v3-rev1.7z
|
- i686-4.9.2-release-win32-sjlj-rt_v3-rev1.7z
|
||||||
- x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z
|
- x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
cd `dirname "$0"`/..
|
cd `dirname "$0"`/..
|
||||||
if [ "$ARCH" = "32" ]; then
|
if [ "$ARCH" = "i686" ]; then
|
||||||
echo 'C:\MinGW\ /MinGW' > /etc/fstab
|
|
||||||
elif [ "$ARCH" = "i686" ]; then
|
|
||||||
f=i686-4.9.2-release-win32-sjlj-rt_v3-rev1.7z
|
f=i686-4.9.2-release-win32-sjlj-rt_v3-rev1.7z
|
||||||
if ! [ -e $f ]; then
|
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
|
curl -LsSO http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/$f
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
# CMake toolchain file for Win32 cross-compile
|
|
||||||
SET(CMAKE_SYSTEM_NAME Windows)
|
|
||||||
|
|
||||||
SET(CMAKE_C_COMPILER i586-mingw32msvc-gcc)
|
|
||||||
SET(CMAKE_RC_COMPILER i586-mingw32msvc-windres)
|
|
||||||
|
|
||||||
SET(CMAKE_FIND_ROOT_PATH /usr/i586-mingw32msvc)
|
|
||||||
|
|
||||||
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
||||||
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
||||||
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
|
||||||
|
|
||||||
SET(ENV{PKG_CONFIG_LIBDIR} ${CMAKE_FIND_ROOT_PATH}/lib/pkgconfig)
|
|
Loading…
Reference in New Issue
Block a user