Commit e3231f89 authored by Syed Bilal Raees's avatar Syed Bilal Raees

yaml

parents
stages:
- build
- test
- deploy
build-job:
stage: build
script:
- echo " compiling the code "
- echo " compile complete "
- mkdir build/
- echo "My app binary file" > build/excutable-binary-file-v1
unit-test-job:
stage: test
script:
- echo "running unit tests"
- echo "code coverage is 90%"
- cat $CI_PROJECT_DIR/build/excutable-binary-file-v1
lint-test-job:
stage: test
script:
- echo "running lint tests"
- echo "no lint issues found"
deploy-job:
stage: deploy
script:
- echo "deploying"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment