Commit 9fbf6328 authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

updated problem1b

parent aee129c7
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ prebuild_problem_1b:
compile_problem_1b:
  stage: compile
  needs:
    - job: prebuild_problem1b
    - job: prebuild_problem_1b
      artifacts: true
  script:
    - ls -a
@@ -35,9 +35,11 @@ compile_problem_1b:

exec_problem_1b:
  stage: test
  dependencies:
    - compile_problem_1b
  needs:
    - job: compile_problem_1b
      artifacts: true
  script:
    - cd hw0/tests
    - ./problem1b
  rules:
    - if: '$CI_COMMIT_REF_NAME == "problem1b"'