Commit 29f8c22f authored by Syed Bilal Raees's avatar Syed Bilal Raees

Update .gitlab-ci.yml

parent a074f42e
Pipeline #2128 canceled with stage
#job1:
# script:
# - echo "hello world"
#stage: test
#tags:
# - ci
stages:
- build
- test
- deploy
build-job:
stage: build
job1:
script:
- echo "complinoing the code"
- mkdir build/
- echo "my app binary file" > build/executable-binary-file-v1
- echo "hello world"
stage: test
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