Commit 2b8837d3 authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

Update .gitlab-ci.yml

parent c2ee6067
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -17,18 +17,16 @@ compile:
  stage: build
  script:
    - echo "Compiling code"
    - wget "https://agile.bu.edu/gitlab/configs/lab-configs/-/raw/master/main.cpp"
    - g++ *.cpp
    - ./a.out
  tags: [c++-17]

lint:
  stage: build
  image: "cppcheck/cppcheck:latest"
  script:
      - echo "Static code check"
      - cppcheck --enable=all --inconclusive --error-exitcode=1 .
  allow_failure: false
  tags: [cppcheck]

test:
  stage: test