Commit 10842d3d authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

fixed warnings

parent 0a690122
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@ stages:
  - prebuild
  - compile
  - test
  - extra

include:
  - local: 'ci_cd/problem1b.yml'   # IntegerP
+15 −1
Original line number Diff line number Diff line
@@ -41,9 +41,23 @@ test_problem_1c:
    - job: compile_problem_1c
      artifacts: true
  script:
    - echo "$HW0_INTERNAL" | base64
    - cd hw0/tests
    - ./problem1c
  artifacts:
    paths:
      - hw0/
  rules:
    - if: '$CI_COMMIT_REF_NAME == "problem1c"'
  tags: [c++-17]

extra_1c:
  stage: extra
  needs:
    - job: test_problem_1c
      artifacts: true
  script:
    - git clone https://${HW0_INTERNAL}@agile.bu.edu/gitlab/ec330/ec330_staff/homeworks_internal/hw0_ec.git
    - cat README.md
  rules:
    - if: '$CI_COMMIT_REF_NAME == "problem1c"'
  tags: [c++-17]
 No newline at end of file