Some cleanups to jenkins

I removed the var checking, some trailing spaces
This commit is contained in:
William Giokas 2018-05-23 10:36:37 -06:00
parent 587ac40827
commit b8ee1aa28e

10
Jenkinsfile vendored
View file

@ -67,10 +67,6 @@ def prSetupRuns = prDistroversions.collectEntries {
node ('bootstrap') {
stage('checkout') { checkout scm }
stage("var checking") {
echo "${env.CHANGE_ID}"
echo "${env.CHANGE_URL}"
}
stage('shellcheck') {
sh 'shellcheck -s sh -f checkstyle bootstrap-salt.sh | tee checkstyle.xml'
checkstyle pattern: '**/checkstyle.xml'
@ -95,7 +91,7 @@ node ('bootstrap') {
* 2. Each distro needs a "stable" install (installs stable packages from our repo) and a "git" install (installs off of a git tag)
* 3. Running against each branch (stable, develop)
* 4. And probably a small subset against each pull request (similar to what we do in salt)
*
*
* Distros to check:
* Debian 8
* Suse 42.1
@ -105,7 +101,7 @@ node ('bootstrap') {
* Ubuntu 16.04
* Ubuntu 14.04
* Windows
*
*
* Runs each against develop and stable
*
*
*/