Jenkinsfile #1

  • //
  • guest/
  • jen_bottom/
  • vagrant/
  • jenkins/
  • config/
  • jobs/
  • multibranch_streams_test/
  • Jenkinsfile
  • View
  • Commits
  • Open Download .zip Download (581 B)
pipeline {
    agent any
    
    options { skipDefaultCheckout() }
    
    stages {
        stage('Checkout') {
            steps {
                p4sync credential: 'id', populate: forceClean(), source: streamSource('//stream/main')
            }
        }
        stage('Build') {
            steps {
                echo 'Building...'
            }
        }
        stage('Test') {
            steps {
                echo 'Testing...'
            }
        }
        stage('Deploy') {
            steps {
                echo 'Deploying...'
            }
        }
    }
}
# Change User Description Committed
#1 27772 Jen Bottom Copy up of changes to Swarm and Jenkins vagrant environments from dev to main