commit | a87e0a8616cd23fa312e8b42f6fade28074c52bd | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Tue Oct 21 14:09:19 2014 -0400 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Wed Oct 22 09:04:56 2014 -0400 |
tree | de51c40ed9f8dab17b73a84d2f7404398d602bc9 | |
parent | 851228a374af39520fd0e802953fc35bfdefc1b1 [diff] [blame] |
ci: Embedding CI build and test running script This commit also unifies build and test scripts for Jenkins and Travis CI Change-Id: I6ee99c51032769629eb2c62b40608033fa9cac78
diff --git a/.jenkins b/.jenkins new file mode 100755 index 0000000..84dc23d --- /dev/null +++ b/.jenkins
@@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) + +for i in $( find "$DIR/.jenkins.d" -type f -perm +111 | sort ); do + echo "Run: $i" + "$i" +done