Skip to content
Snippets Groups Projects
Commit eb5ffebc authored by Daniel van der Schuur's avatar Daniel van der Schuur
Browse files

-Renamed and added dummy pipeline stages.

parent 3fff762d
No related branches found
No related tags found
1 merge request!174Added .gitlab-ci.yml
Pipeline #21026 passed
stages: stages:
- build - sim-compile
- test - sim-simulate
- hw-compile
- hw-check-fmax
- hw-check-programming-files
build: sim-compile:
stage: build stage: sim-compile
script: script:
- echo "Building" - echo "Compiling for simulation"
- mkdir build - mkdir build
- touch build/info.txt - touch build/info.txt
artifacts: artifacts:
paths: paths:
- build/ - build/
test: sim-simulate:
stage: test stage: sim-simulate
script: script:
- echo "Testing" - echo "Running simulations"
- test -f "build/info.txt" - test -f "build/info.txt"
hw-compile:
stage: hw-compile
script:
- echo "Compiling for hardware"
hw-check-fmax:
stage: hw-check-fmax
script:
- echo "Checking achieved fMax"
hw-check-programming-files:
stage: hw-check-programming-files
script:
- echo "Checking if programming files have been generated"
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