Jenkinsfile 319 B

12345678910111213141516
  1. node {
  2. checkout scm
  3. agent { label 'smartos' }
  4. stage('Build') {
  5. echo 'Building....'
  6. echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"
  7. sh 'buildscripts/clean.sh'
  8. }
  9. stage('Test') {
  10. echo 'Building....'
  11. }
  12. stage('Deploy') {
  13. echo 'Deploying....'
  14. }
  15. }