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
Branches
No related tags found
1 merge request!174Added .gitlab-ci.yml
Pipeline #21026 passed
stages:
- build
- test
- sim-compile
- sim-simulate
- hw-compile
- hw-check-fmax
- hw-check-programming-files
build:
stage: build
sim-compile:
stage: sim-compile
script:
- echo "Building"
- echo "Compiling for simulation"
- mkdir build
- touch build/info.txt
artifacts:
paths:
- build/
test:
stage: test
sim-simulate:
stage: sim-simulate
script:
- echo "Testing"
- echo "Running simulations"
- 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.
Please register or to comment