Skip to content
Snippets Groups Projects
Commit f6fcf076 authored by Martin Stump's avatar Martin Stump
Browse files

Add .gitlab-ci.yml file

parent 515f1569
No related branches found
No related tags found
No related merge requests found
Pipeline #14210 failed
stages:
- build
- test
- deploy
build-job:
stage: build
script:
- cmake -G Ninja -B build
- cmake --build build
unit-test-job:
stage: test
script:
- cmake --build build --target test
lint-test-job:
stage: test
script:
- echo "Linting code... This will take about 10 seconds."
- sleep 10
- echo "No lint issues found."
deploy-job:
stage: deploy
environment: production
script:
- echo "Deploying application..."
- echo "Application successfully deployed."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment