Skip to content
Snippets Groups Projects
Commit 2a6de257 authored by Pieter Donker's avatar Pieter Donker
Browse files

CWG-44, fixed merge failure

parents 23ac6395 ec5bfcde
No related branches found
No related tags found
1 merge request!316Resolve CWG-44
Pipeline #46164 failed
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
# . See https://support.astron.nl/confluence/display/L2M/L3+SDP+Decision%3A+Gitlab+pipeline+automation+to+test+SDPFW+with+OPC+UA # . See https://support.astron.nl/confluence/display/L2M/L3+SDP+Decision%3A+Gitlab+pipeline+automation+to+test+SDPFW+with+OPC+UA
stages: stages:
- linting
- simulation - simulation
- synthesis - synthesis
- hardware - hardware
...@@ -52,7 +51,7 @@ lint-vhdl-lib-dsp: ...@@ -52,7 +51,7 @@ lint-vhdl-lib-dsp:
script: script:
- cd libraries/dsp - cd libraries/dsp
- find . -name "*.vhd" -exec vsg -c ../../vsg_config.yaml -f {} \; - find . -name "*.vhd" -exec vsg -c ../../vsg_config.yaml -f {} \;
lint-vhdl-lib-io: lint-vhdl-lib-io:
tags: tags:
- hdl - hdl
...@@ -63,7 +62,7 @@ lint-vhdl-lib-io: ...@@ -63,7 +62,7 @@ lint-vhdl-lib-io:
script: script:
- cd libraries/io - cd libraries/io
- find . -name "*.vhd" -exec vsg -c ../../vsg_config.yaml -f {} \; - find . -name "*.vhd" -exec vsg -c ../../vsg_config.yaml -f {} \;
lint-vhdl-lib-technology: lint-vhdl-lib-technology:
tags: tags:
- hdl - hdl
...@@ -112,7 +111,7 @@ lint-vhdl-applications-lofar2: ...@@ -112,7 +111,7 @@ lint-vhdl-applications-lofar2:
# HDL simulation stage # HDL simulation stage
############################################################################### ###############################################################################
sim-compile: sim-compile:
tags: tags:
- fpga - fpga
stage: simulation stage: simulation
script: script:
...@@ -124,12 +123,12 @@ sim-compile: ...@@ -124,12 +123,12 @@ sim-compile:
- build/ - build/
sim-run: sim-run:
tags: tags:
- fpga - fpga
stage: simulation stage: simulation
script: script:
- echo "Running simulations" - echo "Running simulations"
# - test -f "build/info.txt" # This fails despite having artifact (see # - test -f "build/info.txt" # This fails despite having artifact (see
# sim-compile code block where a folder and # sim-compile code block where a folder and
# file are generated and preserved by using # file are generated and preserved by using
# 'artifacts'). # 'artifacts').
...@@ -138,21 +137,21 @@ sim-run: ...@@ -138,21 +137,21 @@ sim-run:
# HDL synthesis stage # HDL synthesis stage
############################################################################### ###############################################################################
synth-compile: synth-compile:
tags: tags:
- fpga - fpga
stage: synthesis stage: synthesis
script: script:
- echo "Compiling for synthesis" - echo "Compiling for synthesis"
synth-check-fmax: synth-check-fmax:
tags: tags:
- fpga - fpga
stage: synthesis stage: synthesis
script: script:
- echo "Checking achieved fMax" - echo "Checking achieved fMax"
synth-check-programming-files: synth-check-programming-files:
tags: tags:
- fpga - fpga
stage: synthesis stage: synthesis
script: script:
......
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