diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6cca5a80ce81a687b1914278c45f7ae99cf56ede..922577c61f796efc5d23c97e630b2c3524b13f5d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,7 +42,7 @@ lint-vhdl-lib-base: - pip3 install vsg --use-pep517 script: - cd libraries/base - - find . -name "*.vhd" -exec vsg --configuration ~/git/hdl/vsg_config.yaml -f {} \; + - find . -name "*.vhd" -exec vsg --configuration ../../vsg_config.yaml -f {} \; lint-vhdl-lib-dsp: tags: @@ -53,7 +53,7 @@ lint-vhdl-lib-dsp: - pip3 install vsg --use-pep517 script: - cd libraries/dsp - - find . -name "*.vhd" -exec vsg --configuration ~/git/hdl/vsg_config.yaml -f {} \; + - find . -name "*.vhd" -exec vsg --configuration ../../vsg_config.yaml -f {} \; lint-vhdl-lib-io: tags: @@ -64,7 +64,7 @@ lint-vhdl-lib-io: - pip3 install vsg --use-pep517 script: - cd libraries/io - - find . -name "*.vhd" -exec vsg --configuration ~/git/hdl/vsg_config.yaml -f {} \; + - find . -name "*.vhd" -exec vsg --configuration ../../vsg_config.yaml -f {} \; lint-vhdl-lib-technology: tags: @@ -75,7 +75,7 @@ lint-vhdl-lib-technology: - pip3 install vsg --use-pep517 script: - cd libraries/technology - - find . -name "*.vhd" -exec vsg --configuration ~/git/hdl/vsg_config.yaml -f {} \; + - find . -name "*.vhd" -exec vsg --configuration ../../vsg_config.yaml -f {} \; ###############################################################################