commit | 4d4e725233531f8773b95a538a3e8709c52757be | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sat Oct 25 12:21:53 2014 -0700 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sun Oct 26 18:24:45 2014 -0700 |
tree | 1b7e7e006b936d3896766d4bcd31fd6b539315ef | |
parent | 4cf4170b757ef3cce95e3a9f5ba0661607a9e039 [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: Ieaf2d8793c2320a23ce9958c9cf06b3abd4d500f
diff --git a/.jenkins b/.jenkins new file mode 100755 index 0000000..afc4699 --- /dev/null +++ b/.jenkins
@@ -0,0 +1,9 @@ +#!/usr/bin/env bash +set -e + +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