Commit 83467208 authored by Jan Kiene's avatar Jan Kiene
Browse files

run job only on main

parent 2e1fbd36
Loading
Loading
Loading
Loading
Loading
+13 −13
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ stages:
      - 123


.build-codec-linux-make:
build-codec-linux-make:
  extends: .build-job-with-check-for-warnings
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -65,7 +65,7 @@ stages:
    # need to use the "|| exit $?" suffix to get the allowed_failure return code, otherwise the job fails with code 1...<
    - ci/check_for_warnings.py $BUILD_OUTPUT || exit $?

.build-unittests-linux:
build-unittests-linux:
  extends: .build-job-with-check-for-warnings
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -74,7 +74,7 @@ stages:
    # need to use the "|| exit $?" suffix to get the allowed_failure return code, otherwise the job fails with code 1...<
    - ci/check_for_warnings.py $BUILD_OUTPUT || exit $?

.build-prerenderer-linux:
build-prerenderer-linux:
  extends: .build-job-with-check-for-warnings
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -83,7 +83,7 @@ stages:
    # need to use the "|| exit $?" suffix to get the allowed_failure return code, otherwise the job fails with code 1...<
    - ci/check_for_warnings.py $BUILD_OUTPUT || exit $?

.build-td-object-renderer-standalone-linux:
build-td-object-renderer-standalone-linux:
  extends: .build-job-with-check-for-warnings
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -92,7 +92,7 @@ stages:
    # need to use the "|| exit $?" suffix to get the allowed_failure return code, otherwise the job fails with code 1...<
    - ci/check_for_warnings.py $BUILD_OUTPUT || exit $?

.build-codec-linux-cmake:
build-codec-linux-cmake:
  extends: .build-job-with-check-for-warnings
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -105,7 +105,7 @@ stages:
    # need to use the "|| exit $?" suffix to get the allowed_failure return code, otherwise the job fails with code 1...<
    - ci/check_for_warnings.py $BUILD_OUTPUT || exit $?

.build-codec-instrumented-linux:
build-codec-instrumented-linux:
  extends: .build-job-linux
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -113,7 +113,7 @@ stages:
    - bash ci/build_codec_instrumented_linux.sh

# make sure that the codec builds with msan, asan and usan
.build-codec-sanitizers-linux:
build-codec-sanitizers-linux:
  extends: .build-job-linux
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
@@ -122,7 +122,7 @@ stages:


# test that runs all modes with 1s input signals
.codec-smoke-test:
codec-smoke-test:
  extends: .test-job-linux-needs-testv-dir
  # temporarily restrict this job to the only runner which (so far) seems to runit without problems
  timeout: "5 minutes"
@@ -145,8 +145,8 @@ be-2-evs-linux:
  extends: .test-job-linux
  tags:
    - test-fhg-linux-runner1
  # rules:
  #   - if: $CI_COMMIT_BRANCH == 'main'
  rules:
    - if: $CI_COMMIT_BRANCH == 'main'
  stage: test
  script:
    - mkdir build
@@ -163,7 +163,7 @@ be-2-evs-linux:
    - cd evs_be_test
    - python3 ../ci/run_evs_be_test.py
# code selftest testvectors with memory-sanitizer binaries
.msan-on-merge-request-linux:
msan-on-merge-request-linux:
  extends: .test-job-linux
  stage: test
  needs: [ "build-codec-sanitizers-linux" ]
@@ -178,7 +178,7 @@ be-2-evs-linux:


# code selftest testvectors with address-sanitizer binaries
.asan-on-merge-request-linux:
asan-on-merge-request-linux:
  extends: .test-job-linux
  stage: test
  needs: [ "build-codec-sanitizers-linux" ]
@@ -193,7 +193,7 @@ be-2-evs-linux:


# compare bit exactness between target and source branch
.self-test-on-merge-request:
self-test-on-merge-request:
  extends: .test-job-linux
  tags:
    - test-fhg-linux-runner1