Commit 66c103bd authored by Alessandro Ghedini's avatar Alessandro Ghedini Committed by Rich Salz
Browse files

Add initial Travis CI configuration



Closes #63

Signed-off-by: default avatarRich Salz <rsalz@openssl.org>
Reviewed-by: default avatarBen Laurie <ben@openssl.org>
parent e56a7978
Loading
Loading
Loading
Loading

.travis.yml

0 → 100644
+24 −0
Original line number Diff line number Diff line
language: c

os:
 - linux
 - osx

compiler:
 - clang
 - gcc

env:
 - CONFIG_OPTS=""
 - CONFIG_OPTS="--debug"
 - CONFIG_OPTS="shared"

script:
 - ./config $CONFIG_OPTS && make && make test

notifications:
  recipient:
   - openssl-dev@openssl.org
  email:
    on_success: change
    on_failure: always