Commit 44abf150 authored by Syed Bilal Raees's avatar Syed Bilal Raees

changes

parent e3231f89
...@@ -10,6 +10,8 @@ build-job: ...@@ -10,6 +10,8 @@ build-job:
- echo " compile complete " - echo " compile complete "
- mkdir build/ - mkdir build/
- echo "My app binary file" > build/excutable-binary-file-v1 - echo "My app binary file" > build/excutable-binary-file-v1
tags:
- ci
unit-test-job: unit-test-job:
stage: test stage: test
...@@ -17,15 +19,20 @@ unit-test-job: ...@@ -17,15 +19,20 @@ unit-test-job:
- echo "running unit tests" - echo "running unit tests"
- echo "code coverage is 90%" - echo "code coverage is 90%"
- cat $CI_PROJECT_DIR/build/excutable-binary-file-v1 - cat $CI_PROJECT_DIR/build/excutable-binary-file-v1
tags:
- ci
lint-test-job: lint-test-job:
stage: test stage: test
script: script:
- echo "running lint tests" - echo "running lint tests"
- echo "no lint issues found" - echo "no lint issues found"
tags:
- ci
deploy-job: deploy-job:
stage: deploy stage: deploy
script: script:
- echo "deploying" - echo "deploying"
tags:
- ci
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