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

working on same-stage dependencies

parent 50ff8ccc
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ prebuild_lab_0:
      - base_0
  rules:
    - changes:
        - lab0.cpp
        - "lab0.cpp"
  tags: [c++-17]

compile_lab_0:
@@ -38,7 +38,7 @@ compile_lab_0:
      - base_0
  rules:
    - changes:
        - lab0.cpp
        - "lab0.cpp"
  dependencies:
    - prebuild_lab_0
  tags: [c++-17]
@@ -54,7 +54,7 @@ lint_lab_0:
      - base_0
  rules:
    - changes:
        - lab0.cpp
        - "lab0.cpp"
  dependencies:
    - prebuild_lab_0
  tags: [cppcheck]
@@ -69,7 +69,7 @@ test_lab_0:
    - make lab0
  rules:
    - changes:
        - lab0.cpp
        - "lab0.cpp"
  dependencies:
    - compile_lab_0
  tags: [c++-17]
 No newline at end of file
+4 −4
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ prebuild_lab_1:
      - base_1
  rules:
    - changes:
        - lab1.cpp
        - "lab1.cpp"
  tags: [c++-17]

compile_lab_1:
@@ -40,7 +40,7 @@ compile_lab_1:
    - prebuild_lab_1
  rules:
    - changes:
        - lab1.cpp
        - "lab1.cpp"
  tags: [c++-17]

lint_lab_1:
@@ -56,7 +56,7 @@ lint_lab_1:
    - prebuild_lab_1
  rules:
    - changes:
        - lab1.cpp
        - "lab1.cpp"
  tags: [cppcheck]

test_lab_1:
@@ -71,5 +71,5 @@ test_lab_1:
    - compile_lab_1
  rules:
    - changes:
        - lab1.cpp
        - "lab1.cpp"
  tags: [c++-17]
 No newline at end of file