Commit c52295cf by yiling.shen

Add working GitLab CI configuration - basic build and test stages

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