Commit c52295cf by yiling.shen

Add working GitLab CI configuration - basic build and test stages

parent e65f0f59
Pipeline #3183 failed in 0 seconds
stages:
- deploy
- build
- test
deploy_to_production:
stage: deploy
image: alpine:latest
tags:
- jarvis
only:
- master
build:
stage: build
script:
- echo "Starting production deployment"
- echo "Deployment completed"
- echo "Building project"
simple_test:
test:
stage: test
image: alpine:latest
tags:
- jarvis
only:
- master
script:
- echo "Starting test"
- echo "Test successful"
\ No newline at end of file
- echo "Running tests"
\ No newline at end of file
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