From 48917984486d5b69e52fdf93eea2b86297210713 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Sun, 23 Oct 2016 22:11:28 +0200 Subject: [PATCH] [DEV] basic commit --- .travis.yml | 45 +++++++++++++++++++++++++++++++++++++++++++++ README.md | 4 ++++ 2 files changed, 49 insertions(+) create mode 100644 .travis.yml create mode 100644 README.md diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..73c6a10 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,45 @@ +language: + - cpp + +sudo: false + +os: + - linux + - osx + +branches: + only: + - master + - dev + +addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-4.9 + +install: + - pip install --user lutin + +env: + - CONF=debug BOARD=Linux BUILDER=clang GCOV= + - CONF=release BOARD=Linux BUILDER=clang GCOV= + - CONF=debug BOARD=Linux BUILDER=gcc GCOV= + - CONF=release BOARD=Linux BUILDER=gcc GCOV= + - CONF=debug BOARD=Linux BUILDER=gcc GCOV=--gcov + +before_script: + - cd .. + - wget http://atria-soft.com/ci/coverage_send.py + - wget http://atria-soft.com/ci/test_send.py + - wget http://atria-soft.com/ci/warning_send.py + - if [ "$BUILDER" == "gcc" ]; then COMPILATOR_OPTION="--compilator-version=4.9"; else COMPILATOR_OPTION=""; fi + +script: + - lutin -w -j4 -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF $GCOV -p date + +notifications: + email: + - yui.heero@gmail.com + diff --git a/README.md b/README.md new file mode 100644 index 0000000..941dcf9 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +------------------------------ + +Nothing else ... +