travis.yml: rewrite to be better human-readable; trim trailing spaces
This commit is contained in:
parent
c63c0433c1
commit
3b97738ee9
110
.travis.yml
110
.travis.yml
@ -1,34 +1,76 @@
|
|||||||
language: c
|
language: c
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
script: bash "${BUILDSCRIPT}" "${BUILDNAME}" "${BUILDOPTIONS}" "makefile" "-DUSE_LTM -DLTM_DESC -I/usr/include" "/usr/lib/libtommath.a"
|
script: bash "${BUILDSCRIPT}" "${BUILDNAME}" "${BUILDOPTIONS}" "makefile" "-DUSE_LTM -DLTM_DESC -I/usr/include" "/usr/lib/libtommath.a"
|
||||||
env:
|
env:
|
||||||
- BUILDSCRIPT="coverage.sh" BUILDNAME="COVERAGE" BUILDOPTIONS=" "
|
- |
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="STOCK" BUILDOPTIONS=" "
|
BUILDSCRIPT="coverage.sh"
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="SMALL" BUILDOPTIONS="-DLTC_SMALL_CODE"
|
BUILDNAME="COVERAGE"
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="NOTABLES" BUILDOPTIONS="-DLTC_NO_TABLES"
|
BUILDOPTIONS=" "
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="SMALL+NOTABLES" BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_NO_TABLES"
|
- |
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="CLEANSTACK" BUILDOPTIONS="-DLTC_CLEAN_STACK"
|
BUILDSCRIPT="run.sh"
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="CLEANSTACK+SMALL" BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_CLEAN_STACK"
|
BUILDNAME="STOCK"
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="CLEANSTACK+NOTABLES" BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK"
|
BUILDOPTIONS=" "
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="CLEANSTACK+NOTABLES+SMALL" BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK -DLTC_SMALL_CODE"
|
- |
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="NO_FAST" BUILDOPTIONS="-DLTC_NO_FAST"
|
BUILDSCRIPT="run.sh"
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="NO_FAST+NOTABLES" BUILDOPTIONS="-DLTC_NO_FAST -DLTC_NO_TABLES"
|
BUILDNAME="SMALL"
|
||||||
- BUILDSCRIPT="run.sh" BUILDNAME="NO_ASM" BUILDOPTIONS="-DLTC_NO_ASM"
|
BUILDOPTIONS="-DLTC_SMALL_CODE"
|
||||||
- BUILDSCRIPT="testbuild.sh" BUILDNAME="NOTEST" BUILDOPTIONS="-DLTC_NO_TEST"
|
- |
|
||||||
- BUILDSCRIPT="testbuild.sh" BUILDNAME="NOFILE" BUILDOPTIONS="-DLTC_NO_FILE"
|
BUILDSCRIPT="run.sh"
|
||||||
matrix:
|
BUILDNAME="NOTABLES"
|
||||||
fast_finish: true
|
BUILDOPTIONS="-DLTC_NO_TABLES"
|
||||||
branches:
|
- |
|
||||||
only:
|
BUILDSCRIPT="run.sh"
|
||||||
- develop
|
BUILDNAME="SMALL+NOTABLES"
|
||||||
before_script:
|
BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_NO_TABLES"
|
||||||
- sudo apt-get install libtommath-dev
|
- |
|
||||||
- sudo pip install cpp-coveralls
|
BUILDSCRIPT="run.sh"
|
||||||
after_failure:
|
BUILDNAME="CLEANSTACK"
|
||||||
- cat test_std.txt
|
BUILDOPTIONS="-DLTC_CLEAN_STACK"
|
||||||
- cat test_err.txt
|
- |
|
||||||
after_script:
|
BUILDSCRIPT="run.sh"
|
||||||
- cat gcc_2.txt
|
BUILDNAME="CLEANSTACK+SMALL"
|
||||||
notifications:
|
BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_CLEAN_STACK"
|
||||||
irc: "chat.freenode.net#libtom"
|
- |
|
||||||
|
BUILDSCRIPT="run.sh"
|
||||||
|
BUILDNAME="CLEANSTACK+NOTABLES"
|
||||||
|
BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK"
|
||||||
|
- |
|
||||||
|
BUILDSCRIPT="run.sh"
|
||||||
|
BUILDNAME="CLEANSTACK+NOTABLES+SMALL"
|
||||||
|
BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK -DLTC_SMALL_CODE"
|
||||||
|
- |
|
||||||
|
BUILDSCRIPT="run.sh"
|
||||||
|
BUILDNAME="NO_FAST"
|
||||||
|
BUILDOPTIONS="-DLTC_NO_FAST"
|
||||||
|
- |
|
||||||
|
BUILDSCRIPT="run.sh"
|
||||||
|
BUILDNAME="NO_FAST+NOTABLES"
|
||||||
|
BUILDOPTIONS="-DLTC_NO_FAST -DLTC_NO_TABLES"
|
||||||
|
- |
|
||||||
|
BUILDSCRIPT="run.sh"
|
||||||
|
BUILDNAME="NO_ASM"
|
||||||
|
BUILDOPTIONS="-DLTC_NO_ASM"
|
||||||
|
- |
|
||||||
|
BUILDSCRIPT="testbuild.sh"
|
||||||
|
BUILDNAME="NOTEST"
|
||||||
|
BUILDOPTIONS="-DLTC_NO_TEST"
|
||||||
|
- |
|
||||||
|
BUILDSCRIPT="testbuild.sh"
|
||||||
|
BUILDNAME="NOFILE"
|
||||||
|
BUILDOPTIONS="-DLTC_NO_FILE"
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- develop
|
||||||
|
before_script:
|
||||||
|
- sudo apt-get install libtommath-dev
|
||||||
|
- sudo pip install cpp-coveralls
|
||||||
|
after_failure:
|
||||||
|
- cat test_std.txt
|
||||||
|
- cat test_err.txt
|
||||||
|
after_script:
|
||||||
|
- cat gcc_2.txt
|
||||||
|
notifications:
|
||||||
|
irc: "chat.freenode.net#libtom"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user