Ver código fonte

add valgrind to CI

pikastech 3 anos atrás
pai
commit
6ae8bf0c15
2 arquivos alterados com 6 adições e 0 exclusões
  1. 3 0
      .github/workflows/CI.yml
  2. 3 0
      .github/workflows/TEST.yml

+ 3 - 0
.github/workflows/CI.yml

@@ -42,6 +42,9 @@ jobs:
     - name: TEST
       # Build your program with the given configuration
       run: cd ${{github.workspace}}/port/linux && bash gtest.sh
+
+    - name: VALGRIND
+      run: cd ${{github.workspace}}/port/linux && bash valgrind.sh
       
     - name: BENCHMARK
       run: cd ${{github.workspace}}/port/linux && bash ci_benchmark.sh

+ 3 - 0
.github/workflows/TEST.yml

@@ -39,6 +39,9 @@ jobs:
     - name: TEST
       # Build your program with the given configuration
       run: cd ${{github.workspace}}/port/linux && bash gtest.sh
+
+    - name: VALGRIND
+      run: cd ${{github.workspace}}/port/linux && bash valgrind.sh
       
     - name: BENCHMARK
       run: cd ${{github.workspace}}/port/linux && bash ci_benchmark.sh