Loading .gitlab-ci.yml +1 −3 Original line number Diff line number Diff line Loading @@ -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 Loading Loading
.gitlab-ci.yml +1 −3 Original line number Diff line number Diff line Loading @@ -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 Loading