Commit 580c79fa authored by Jan Kiene's avatar Jan Kiene
Browse files

create test jobs for sanitizer scheduling

parent 4fc98050
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -492,6 +492,29 @@ sanitizer-test-on-main-scheduled:
      - "./*/logs"


# ---------------------------------------------------------------
# Scheduled sanitizer tests on main
# ---------------------------------------------------------------
sanitizer-test-mono:
  extends:
    - .test-job-linux-needs-testv-dir
  stage: test
  rules:
    - if: $IS_SANITIZER_TEST_RUN
  script:
    - python3 ci/run_scheduled_sanitizer_test.py mono mono --tests CLANG1 CLANG2

sanitizer-test-stereo:
  extends:
    - .test-job-linux-needs-testv-dir
  stage: test
  rules:
    - if: $IS_SANITIZER_TEST_RUN
      when: delayed
      start_in: 20 minutes
  script:
    - python3 ci/run_scheduled_sanitizer_test.py stereo stereo mono 5_1 5_1_2 5_1_4 7_1 7_1_4 --tests CLANG1 CLANG2

# ---------------------------------------------------------------
# Other jobs
# ---------------------------------------------------------------