Jenkinsfile 485 B

1234567891011121314151617181920212223
  1. pipeline {
  2. agent { label 'smartos' }
  3. stages {
  4. stage('Build') {
  5. steps {
  6. echo 'Building..'
  7. echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"
  8. sh 'buildscripts/clean.sh'
  9. }
  10. }
  11. stage('Test') {
  12. steps {
  13. echo 'Testing..'
  14. }
  15. }
  16. stage('Deploy') {
  17. steps {
  18. echo 'Deploying....'
  19. }
  20. }
  21. }
  22. }