libtomcrypt/.travis.yml

136 lines
3.8 KiB
YAML
Raw Normal View History

2019-09-23 13:09:49 +00:00
dist: bionic
sudo: required
language: c
2019-09-23 13:09:49 +00:00
before_install:
2017-06-13 16:21:06 +00:00
- sudo apt-get update -qq
2019-09-23 13:32:38 +00:00
- sudo apt-get install -y libtommath-dev libgmp-dev libtfm-dev valgrind libtool-bin
2017-06-13 16:21:06 +00:00
before_script:
- gem install coveralls-lcov
2017-05-11 14:37:14 +00:00
- curl http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.11.orig.tar.gz | tar xz
- export PATH=$PATH:`pwd`/lcov-1.11/bin
- curl -s https://packagecloud.io/install/repositories/libtom/packages/script.deb.sh | sudo bash
2019-09-23 13:09:49 +00:00
- sudo apt-get install libtfm1=0.13-5ubuntu1
matrix:
fast_finish: true
branches:
only:
- master
- develop
- /^release\/.*$/
compiler:
- gcc
2017-02-28 00:33:17 +00:00
- clang
script:
- bash "${BUILDSCRIPT}" "${BUILDNAME}" "-DUSE_LTM -DLTM_DESC" "makefile V=1" "${BUILDOPTIONS}" "-ltommath" &&
bash "${BUILDSCRIPT}" "${BUILDNAME}" "-DUSE_TFM -DTFM_DESC" "makefile.shared V=1" "${BUILDOPTIONS}" "-ltfm"
env:
- |
2017-12-05 16:31:10 +00:00
BUILDNAME="META_BUILDS"
BUILDOPTIONS="-DGMP_DESC"
BUILDSCRIPT=".ci/meta_builds.sh"
- |
BUILDNAME="VALGRIND"
BUILDOPTIONS=" "
BUILDSCRIPT=".ci/valgrind.sh"
- |
BUILDNAME="STOCK"
BUILDOPTIONS=" "
2018-12-29 21:37:50 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
2018-12-29 21:37:50 +00:00
BUILDNAME="STOCK-MPI"
BUILDOPTIONS="-ULTM_DESC -UTFM_DESC -UUSE_LTM -UUSE_TFM"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
2017-02-28 20:19:27 +00:00
BUILDNAME="EASY"
BUILDOPTIONS="-DLTC_EASY"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="SMALL"
BUILDOPTIONS="-DLTC_SMALL_CODE"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="NOTABLES"
BUILDOPTIONS="-DLTC_NO_TABLES"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="SMALL+NOTABLES"
BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_NO_TABLES"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="CLEANSTACK"
BUILDOPTIONS="-DLTC_CLEAN_STACK"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="CLEANSTACK+SMALL"
BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_CLEAN_STACK"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="CLEANSTACK+NOTABLES"
BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="CLEANSTACK+NOTABLES+SMALL"
BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK -DLTC_SMALL_CODE"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="NO_FAST"
BUILDOPTIONS="-DLTC_NO_FAST"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="NO_FAST+NOTABLES"
BUILDOPTIONS="-DLTC_NO_FAST -DLTC_NO_TABLES"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="NO_ASM"
BUILDOPTIONS="-DLTC_NO_ASM"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="NO_TIMING_RESISTANCE"
BUILDOPTIONS="-DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="CLEANSTACK+NOTABLES+SMALL+NO_ASM+NO_TIMING_RESISTANCE+LTC_FORTUNA_RESEED_RATELIMIT_STATIC"
BUILDOPTIONS="-DLTC_CLEAN_STACK -DLTC_NO_TABLES -DLTC_SMALL_CODE -DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING -DLTC_FORTUNA_RESEED_RATELIMIT_STATIC"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
BUILDNAME="PTHREAD"
BUILDOPTIONS="-DLTC_PTHREAD"
2017-10-18 20:30:39 +00:00
BUILDSCRIPT=".ci/run.sh"
2018-12-29 21:37:50 +00:00
- |
BUILDNAME="PTHREAD+CLEANSTACK+NOTABLES+SMALL+NO_ASM+NO_TIMING_RESISTANCE+LTC_FORTUNA_RESEED_RATELIMIT_STATIC"
BUILDOPTIONS="-DLTC_CLEAN_STACK -DLTC_NO_TABLES -DLTC_SMALL_CODE -DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING -DLTC_FORTUNA_RESEED_RATELIMIT_STATIC -DLTC_PTHREAD"
2018-12-29 21:37:50 +00:00
BUILDSCRIPT=".ci/run.sh"
- |
2018-12-29 21:37:50 +00:00
BUILDNAME="STOCK+ARGTYPE=1"
BUILDOPTIONS="-DARGTYPE=1"
BUILDSCRIPT=".ci/run.sh"
- |
2018-12-29 21:37:50 +00:00
BUILDNAME="STOCK+ARGTYPE=2"
BUILDOPTIONS="-DARGTYPE=2"
BUILDSCRIPT=".ci/run.sh"
- |
2018-12-29 21:37:50 +00:00
BUILDNAME="STOCK+ARGTYPE=3"
BUILDOPTIONS="-DARGTYPE=3"
BUILDSCRIPT=".ci/run.sh"
- |
2018-12-29 21:37:50 +00:00
BUILDNAME="STOCK+ARGTYPE=4"
BUILDOPTIONS="-DARGTYPE=4"
BUILDSCRIPT=".ci/run.sh"
after_failure:
- cat test_std.txt
- cat test_err.txt
2017-08-07 17:37:53 +00:00
- cat tv.txt
after_script:
2017-05-05 16:58:30 +00:00
- cat gcc_1.txt
- cat gcc_2.txt
notifications:
irc: "chat.freenode.net#libtom-notifications"