Commit d20c4728 authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

added hook for lab1.yml

parent 7b74b9c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,4 +7,4 @@ stages:
include:
  - local: 'ci_cd/labm1.yml'   # Lab -1
  - local: 'ci_cd/lab0.yml'    # Lab 0
  - local: 'ci_cd/lab1.yml'    # Lab 0
 No newline at end of file
  - local: 'ci_cd/lab1.yml'    # Lab 1
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ lint_lab_1:
    - echo "Static code check of lab1.cpp"
    - cppcheck --check-config --enable=all --inconclusive --error-exitcode=1 lab1.cpp tests/LabOne.cpp
  allow_failure: false
  needs: [compile_lab_0]
  needs: [compile_lab_1]
  artifacts:
    paths:
      - base_1
@@ -57,5 +57,5 @@ test_lab_1:
    - cp lab1.o base_1/tests
    - cd base_1/tests
    - make lab1
  needs: [lint_lab_0]
  needs: [lint_lab_1]
  tags: [c++-17]
 No newline at end of file