Advertisement
logicmoo

Untitled

Sep 13th, 2021
2,678
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 1.36 KB | None | 0 0
  1. // Powered by Infostretch
  2.  
  3. timestamps {
  4.  
  5. node () {
  6.  
  7.     stage ('logicmoo_master - Checkout') {
  8.      checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '7a3dc8f8-8666-4c78-8526-d25d0c136b01', url: 'https://github.com/logicmoo/logicmoo_workspace.git']]])
  9.     }
  10.     stage ('logicmoo_master - Build') {
  11.    
  12. // Unable to convert a build step referring to "hudson.plugins.timestamper.TimestamperBuildWrapper". Please verify and convert manually if required.
  13. // Unable to convert a build step referring to "hudson.plugins.ansicolor.AnsiColorBuildWrapper". Please verify and convert manually if required.
  14. // Unable to convert a build step referring to "org.jenkinsci.plugins.testinprogress.TestInProgressBuildWrapper". Please verify and convert manually if required.
  15.         // Shell build step
  16.         sh '''
  17. echo "About to run Groovy Script"
  18. '''
  19. // Unable to convert a build step referring to "org.jenkinsci.plugins.github.pullrequest.builders.GitHubPRStatusBuilder". Please verify and convert manually if required.
  20. // Unable to convert a build step referring to "hudson.plugins.groovy.SystemGroovy". Please verify and convert manually if required.
  21.         // Shell build step
  22.         sh '''
  23. ./test_on_release.sh
  24. '''
  25.         // JUnit Results
  26.         junit 'test_results/jenkins/*-junit.xml'
  27.     }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement