Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Add Jenkins Pipeline for Unstable ports
Browse files Browse the repository at this point in the history
  • Loading branch information
kmoore134 committed Jun 23, 2018
1 parent f302edb commit 62b5455
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Jenkinsfile-Ports-Unstable
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
pipeline {
agent { label 'JenkinsJail' }

environment {
GH_ORG = 'trueos'
GH_REPO = 'trueos-ports'
GH_BUILD_BRANCH = 'trueos-master'
}

stages {
stage('Checkout') {
steps {
checkout scm
}
}

stage('INDEX Test') {
steps {
build 'TrueOS - Master - Complete'
}
}
}
}

0 comments on commit 62b5455

Please sign in to comment.