Commit 92071ef0 authored by Syed Bilal Raees's avatar Syed Bilal Raees

yaml

parents
Pipeline #2130 failed with stages
in 8 seconds
stages:
- build
- test
- deploy
build-job:
stage: build
script:
- echo "complinoing the code"
- mkdir build/
- echo "my app binary file" > build/executable-binary-file-v1
tags:
- ci
unit-test-job:
stage: test
script:
- echo "running unit test job"
- cat $CI_PROJECT_DIR/build/executable-binary-file-v1
tags:
- ci
lint-test-job:
stage: test
script:
- echo "linting code "
tags:
- ci
deploy-job:
stage: deploy
script:
- 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