Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.43 KB | None | 0 0
  1. # This file is a template, and might need editing before it works on your project.
  2. # Select image from https://hub.docker.com/_/php/
  3. stages:
  4.  - deploy
  5.  
  6. deploy:
  7.     stage: deploy
  8.     image: php:latest
  9.     script:
  10.    - php -S 127.0.0.1:7007 &
  11.     - sleep 30
  12.     - curl -vvv http://127.0.0.1:7007/ > output.txt
  13.     - echo "LOOOLOOLOLOLOLOLOOOOOL----MPPPP--DADADA" > output.txt
  14.  
  15.     artifacts:
  16.        paths:
  17.       - output.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement