Edit

kc3-lang/libtommath/.travis.yml

Branch :

  • Show log

    Commit

  • Author : Steffen Jaeckel
    Date : 2017-10-19 12:01:58
    Hash : aaa52a3d
    Message : also run test vs mtest with real random data

  • .travis.yml
  • language: c
    
    install:
        - sudo apt-get update -qq
        - sudo apt-get install gcc-multilib
    
    matrix:
      fast_finish: true
    branches:
      only:
        - master
        - develop
        - /^release\/.*$/
    
    compiler:
      - gcc
      - clang
    script:
      - ./testme.sh --with-cc=$CC ${BUILDOPTIONS}
    env:
      - |
        BUILDOPTIONS="--test-vs-mtest=333333"
      - |
        BUILDOPTIONS="--test-vs-mtest=333333 --mtest-real-rand"
      - |
        BUILDOPTIONS="--with-low-mp"
      - |
        BUILDOPTIONS="--with-m64 --with-m32 --with-mx32"
    
    after_failure:
      - cat test_*.log
      - cat gcc_errors_*.log
    
    notifications:
      irc: "chat.freenode.net#libtom-notifications"