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

trying to fix the yml file

parent 7c8e7260
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -25,22 +25,22 @@ compile_m1:
    - g++ -c lab-1.cpp
  needs:
    - prebuild_m1
  <<: *common_rules
  tags: [c++-17]

lint_m1:
  stage: LabMinusOne
  <<: *common_rules
  script:
      - echo "Static code check of lab-1.cpp"
      - cppcheck --enable=all --inconclusive --error-exitcode=1 lab-1.cpp
  allow_failure: false
  needs:
    - compile_m1
  <<: *common_rules
  tags: [cppcheck]

test_m1:
  stage: LabMinusOne
  <<: *common_rules
  script:
    - echo "Testing Lab -1";
    - |
@@ -50,5 +50,4 @@ test_m1:
      fi
  needs:
    - lint_m1
  <<: *common_rules
  tags: [shell]
 No newline at end of file