Commit 9b1d142e authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[ci] fix missing binaries for split-rendering jobs

parent 850f4218
Loading
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -512,7 +512,7 @@ split-rendering-smoke-test:
  needs: ["build-codec-linux-make"]
  stage: test
  script:
    - make -j IVAS_rend
    - make -j
    - python3 -m pytest -q -n auto -rA --junit-xml=report-junit.xml tests/split_rendering/test_split_rendering.py
  artifacts:
    name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
@@ -550,13 +550,15 @@ split-rendering-pytest-on-merge-request:
    - git checkout $target_commit

    # build reference binaries
    - make -j IVAS_rend
    - make -j
    - mv IVAS_cod IVAS_cod_ref
    - mv IVAS_dec IVAS_dec_ref
    - mv IVAS_rend IVAS_rend_ref

    # back to source branch
    - git checkout $source_branch_commit_sha
    - make clean
    - make -j IVAS_rend
    - make -j

    # run test
    - exit_code=0