Guest User

Untitled

a guest
Jun 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. image: microsoft/dotnet:latest
  2.  
  3. stages:
  4. - build
  5. - test
  6.  
  7. build:
  8. stage: build
  9. script:
  10. - dotnet restore
  11. - dotnet build
  12.  
  13. test:
  14. stage: test
  15. script:
  16. - dotnet test Tests
  17.  
  18. Pulling docker image microsoft/dotnet:latest ...
  19. Using docker image sha256:xxxxxx for microsoft/dotnet:latest ...
  20. Running on runner-xxxxxx-concurrent-0 via myserver...
  21. ....
  22. Fetching changes...
  23. ....
  24. HEAD is now at xxxxxx test
  25. Checking out xxxxxx as mybranch...
  26. ...
  27. $ dotnet test Tests
  28.  
  29. docker ps -a
Add Comment
Please, Sign In to add comment