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

Update .gitlab-ci.yml

parent ffb282a4
Pipeline #2120 canceled with stages
job1: stages:
- build
- test
- deploy
build-job:
stage: build
script: script:
- echo "hello world" - echo "complinoing the code"
- mkdir build/
- echo "my app binary file" > build/executable-binary-file-v1
unit-test-job:
stage: test stage: test
tags: script:
- ci - echo "running unit test job"
- cat $CI_PROJECT_DIR/build/executable-binary-file-v1
lint-test-job:
stage: test
script:
- echo "linting code "
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