Merge pull request #60 from rtyler/no-executor-info

Remove the executor-info plugin which breaks on master
This commit is contained in:
R. Tyler Croy 2017-11-02 08:40:43 -07:00 committed by GitHub
commit 9f698f6939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -18,7 +18,7 @@ function cloneWithDependencies() {
git clone --depth 1 git://github.com/jenkinsci/$1.git
fi;
for pom in $(find $1 -iname 'pom.xml' -type f); do
for pom in $(find $1 -iname 'pom.xml' -maxdepth 2 -type f); do
(cd $(dirname $pom) && ${SCRIPTS_DIR}/plugins-from-pom 'pom.xml')
done;
@ -36,9 +36,6 @@ fi;
pushd $REPOS_DIR
# Grab Keith's superb executor info plugin
git clone --depth 1 git://github.com/rtyler/blueocean-executor-info-plugin.git
# Grab the latest datadog plugin from their org (it's not in jenkinsci)
git clone --depth 1 git://github.com/datadog/jenkins-datadog-plugin.git datadog-plugin