Disable circle-ci

This commit is contained in:
rthomas 2020-05-24 06:49:10 +02:00
parent e0656480cf
commit ee45d512d8
2 changed files with 2 additions and 42 deletions

View File

@ -11,10 +11,11 @@
<img src="https://travis-ci.org/lief-project/LIEF.svg?branch=master">
</a>
&nbsp;
<!--
<a href="https://circleci.com/gh/lief-project/LIEF/tree/master">
<img src="https://circleci.com/gh/lief-project/LIEF/tree/master.svg?style=svg">
</a>
&nbsp;
&nbsp;-->
<a href="https://ci.appveyor.com/project/Romain/lief/branch/master">
<img src="https://ci.appveyor.com/api/projects/status/0ijlcujac5vh8cas/branch/master?svg=true">
</a>

View File

@ -1,41 +0,0 @@
machine:
python:
version: 2.7.5
environment:
PATH: "${HOME}/cmake-3.7.2-Linux-x86_64/bin:${PATH}"
PYTHON_VERSION: "2.7"
checkout:
post:
- git fetch && git pull origin ${CIRCLE_BRANCH}
compile:
pre:
- mkdir build
- cmake -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc -DPYTHON_VERSION=${PYTHON_VERSION} -DLIEF_TESTS=on ..:
pwd:
build
override:
- make -j3:
pwd:
build
dependencies:
pre:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update; sudo apt-get install gcc-5; sudo apt-get install g++-5
- sudo apt-get install libpython2.7
- sudo apt-get install python2.7-dev
- sudo apt-get install python-setuptools
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 100
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 100
override:
- wget --no-check-certificate http://cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.tar.gz
- tar -xzf cmake-3.7.2-Linux-x86_64.tar.gz -C ${HOME}
test:
override:
- make check-lief:
pwd:
build