From 8235494a4fcd9225be75a5bf29f5f3e24a4fd162 Mon Sep 17 00:00:00 2001
From: donker <donker@astron.nl>
Date: Wed, 22 Mar 2023 15:44:14 +0100
Subject: [PATCH] CWG-44, add linting for vhdl, test2

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6cca5a80ce..922577c61f 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 {} \;
       
 
 ###############################################################################
-- 
GitLab