50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
language: cpp
|
|
|
|
env:
|
|
global:
|
|
# DROPBOX_KEY
|
|
- secure: "H1aUwvee839ZPVievqm8Fwl9hBHx5/JW6+J66+ORYL2IHHPjfOgLKRYU2rcTcbxnZO88NJRGeiI431rEadBU2Ie5aS8WpKM5orvRmdd6bLcCvzqN+hS8JCmCVygQtgpKYYUk8iDWhX9YCgPVs0RlRz3UCjwUpqdkmL+w74lIZMM="
|
|
matrix:
|
|
- CMAKE_CXX_COMPILER=g++ CMAKE_BUILD_TYPE=RELEASE UPLOAD=windows DROPBOX=TRUE PUSH_TO_CDASH=TRUE
|
|
- CMAKE_CXX_COMPILER=g++ CMAKE_BUILD_TYPE=DEBUG
|
|
|
|
install:
|
|
- sudo add-apt-repository --yes ppa:purplekarrot/cmake
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get -qq install cmake make
|
|
- if [[ $DROPBOX == TRUE ]]; then
|
|
sudo apt-get -qq install python python-pip;
|
|
sudo pip install dropbox;
|
|
fi
|
|
- mkdir -p /tmp/mxe
|
|
- cd /tmp/mxe
|
|
- wget http://dl.dropboxusercontent.com/u/203889738/gcc/mxe-gcc-4.8.1.tar.bz2
|
|
- tar xfj mxe-gcc-4.8.1.tar.bz2
|
|
- cd -
|
|
|
|
script:
|
|
- mkdir -p build
|
|
- LEAN_ROOT=`pwd`
|
|
- cd build
|
|
- cmake -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} ../src -DCMAKE_TOOLCHAIN_FILE=/tmp/mxe/usr/x86_64-w64-mingw32/share/cmake/mxe-conf.cmake
|
|
- ctest -D ExperimentalBuild
|
|
- if [[ $PUSH_TO_CDASH == TRUE ]]; then
|
|
ctest -D ExperimentalSubmit;
|
|
fi
|
|
- cd ..
|
|
|
|
after_script:
|
|
- if [[ $UPLOAD ]]; then
|
|
UPLOAD_DIR=bin;
|
|
BINARY=lean_${UPLOAD}.exe;
|
|
mkdir ${UPLOAD_DIR};
|
|
cp build/shell/lean.exe ${UPLOAD_DIR}/${BINARY};
|
|
script/dropbox_upload.py ${UPLOAD_DIR} /Public/${UPLOAD_DIR} ${DROPBOX_KEY};
|
|
fi
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- leansmt-dev@googlegroups.com
|
|
on_success: always
|
|
on_failure: always
|