Skip to content
Snippets Groups Projects
Commit a9a32a51 authored by Manja Musterfrau's avatar Manja Musterfrau
Browse files

First

parent b8d601b3
No related branches found
No related tags found
No related merge requests found
Pipeline #210 passed
before_script:
- echo "Before script section"
- echo "For example you might run an update here or install a build dependency"
- echo "Or perhaps you might print out some debugging details"
after_script:
- echo "After script section"
- echo "For example you might do some cleanup here"
build1:
stage: build
only:
- master
tags:
- cpp
script:
- echo "Do your build here"
test1:
stage: test
only:
- master
script:
- echo "For test1 example run a test suite"
test2:
stage: test
tags:
- perl
script:
- echo "Do test2 another parallel test here"
- echo "For test2 example run a lint test"
test3:
stage: test
only:
- master
script:
- echo "Do test3 another parallel test here"
- echo "For test3 example run a lint test"
test4:
stage: test
only:
- master
tags:
- ruby
script:
- echo "Do test4 another parallel test here"
- echo "For test4 example run a lint test"
deploy1:
stage: deploy
only:
- master
script:
- echo "Do your deploy here"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment