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

adaptations for MR pipelines with target ivas-float-update

parent ec0962ad
Loading
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -114,6 +114,7 @@ stages:
.build-reference-and-dut-binaries: &build-reference-and-dut-binaries
  - current_commit_sha=$(git rev-parse HEAD)
  ### build reference binaries
  - echo "building reference branch: $REFERENCE_BRANCH"
  - git checkout $REFERENCE_BRANCH
  - git pull
  - make clean
@@ -192,7 +193,6 @@ stages:
    - if: $CI_PIPELINE_SOURCE == 'web' && $MANUAL_PIPELINE_TYPE == "pytest-compare"
    - if: $CI_PIPELINE_SOURCE == 'push' && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event' && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "main" # only have MR pipelines for MRs to main
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event' && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "ivas-float-update"
    - if: $CI_PIPELINE_SOURCE == 'push'
      when: never
    - if: $CI_PIPELINE_SOURCE == 'schedule'
@@ -716,6 +716,7 @@ ivas-pytest-compare_to_main-short-dec:
    - TEST_SUITE="$SHORT_TEST_SUITE"
    - LEVEL_SCALING=1.0
    - rm -rf tests/dut tests/ref
    - if [ "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" == "$REFERENCE_BRANCH" ]; then REFERENCE_BRANCH=main; fi
  <<: *ivas-pytest-on-merge-request-anchor

ivas-pytest-compare_to_main-short-dec-lev-10:
@@ -728,6 +729,7 @@ ivas-pytest-compare_to_main-short-dec-lev-10:
    - TEST_SUITE="$SHORT_TEST_SUITE"
    - LEVEL_SCALING=0.3162
    - rm -rf tests/dut tests/ref
    - if [ "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" == "$REFERENCE_BRANCH" ]; then REFERENCE_BRANCH=main; fi
  <<: *ivas-pytest-on-merge-request-anchor

ivas-pytest-compare_to_main-short-dec-lev+10:
@@ -740,6 +742,7 @@ ivas-pytest-compare_to_main-short-dec-lev+10:
    - TEST_SUITE="$SHORT_TEST_SUITE"
    - LEVEL_SCALING=3.162
    - rm -rf tests/dut tests/ref
    - if [ "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" == "$REFERENCE_BRANCH" ]; then REFERENCE_BRANCH=main; fi
  <<: *ivas-pytest-on-merge-request-anchor

# ---------------------------------------------------------------