From ba1859f858a74126654d7d4100d2d96f03aa6951 Mon Sep 17 00:00:00 2001 From: Victor Costan Date: Fri, 8 Jan 2016 13:21:37 -0500 Subject: [PATCH] First attempt of getting Travis CI working. --- .travis.yml | 13 +++++++++++++ src/crypto/crypto.gyp | 1 - 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f2119fe --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: cpp +sudo: false +compiler: gcc +before_script: + - ./build/deps.sh + - ./build/run_gyp.sh +env: + - BUILD=Debug + - BUILD=Release +script: ./build/ninja -C out/$BUILD && + ./out/$BUILD/bare_tests && + ./out/$BUILD/crypto_tests && + ./out/$BUILD/monitor_tests diff --git a/src/crypto/crypto.gyp b/src/crypto/crypto.gyp index 2e6203a..29ab04a 100644 --- a/src/crypto/crypto.gyp +++ b/src/crypto/crypto.gyp @@ -65,4 +65,3 @@ }, ], } -