Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. node { ws {
  2. def msbuild_tool = tool(
  3. name: 'MSBuild 4 (x64)',
  4. type: 'hudson.plugins.msbuild.MsBuildInstallation');
  5.  
  6. stage("checkout") {
  7. checkout scm;
  8. }
  9.  
  10. stage("build") {
  11. bat "${msbuild_tool} helloworld.csproj"
  12. }
  13.  
  14. stage("test") {
  15. echo "Voer de tests uit"
  16. }
  17.  
  18. stage("deploy") {
  19. echo "Deploy naar de juiste omgeving"
  20. }
  21. } }
Add Comment
Please, Sign In to add comment