Guest User

Untitled

a guest
Dec 12th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-darwin-amd64
  2. sudo chmod +x /usr/local/bin/gitlab-runner
  3.  
  4. build:
  5. script:
  6. - echo "Hello World"
  7.  
  8. gitlab-runner exec shell build
  9.  
  10. Running with gitlab-runner 11.3.1~beta.4.g0aa5179e (0aa5179e)
  11. Using Shell executor...
  12. Running on cory-klein.local...
  13. Cloning repository...
  14. Cloning into '/Users/coryklein/code/prometheus-redis-exporter/builds/0/project-0'...
  15. done.
  16. Checking out 66fff899 as master...
  17. Skipping Git submodules setup
  18. $ echo "Hello World"
  19. Hello World
  20. Job succeeded
Add Comment
Please, Sign In to add comment