Commit 2c7b8b45 authored by Jan Kiene's avatar Jan Kiene
Browse files

handle complexity jobs for basop repo

parent ca4192d6
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -15,4 +15,9 @@
    <li><a href="ivas-pytest-compare_ref-long-enc-lev+10-index.html">ivas-pytest-compare_ref-long-enc-lev+10</a></li>
    <li><a href="ivas-pytest-compare_ref-long-enc-lev-10-index.html">ivas-pytest-compare_ref-long-enc-lev-10</a></li>
  </ul>

  <h3>Complexity Reports</h3>

  {}

</body>
+10 −14
Original line number Diff line number Diff line
@@ -42,15 +42,15 @@ JOBS_FLOAT_REPO = {
    # "timeless" jobs (not complexity)
    "coverage-test-on-main-scheduled": "Coverage",
}
JOBS_BASOP_REPO = [
    "ivas-pytest-compare_ref-long-dec",
    "ivas-pytest-compare_ref-long-dec-lev+10",
    "ivas-pytest-compare_ref-long-dec-lev-10",
    "ivas-pytest-compare_ref-long-enc",
    "ivas-pytest-compare_ref-long-enc-lev+10",
    "ivas-pytest-compare_ref-long-enc-lev-10",    
    "complexity-stereo-in-ext-out",
]
JOBS_BASOP_REPO = {
    "ivas-pytest-compare_ref-long-dec": "Pytest decoder compare to ref LTV",
    "ivas-pytest-compare_ref-long-dec-lev+10": "Pytest decoder compare to ref LTV +10dB",
    "ivas-pytest-compare_ref-long-dec-lev-10": "Pytest decoder compare to ref LTV -10dB",
    "ivas-pytest-compare_ref-long-enc": "Pytest encoder compare to ref LTV",
    "ivas-pytest-compare_ref-long-enc-lev+10": "Pytest encoder compare to ref LTV +10dB",
    "ivas-pytest-compare_ref-long-enc-lev-10": "Pytest encoder compare to ref LTV -10dB",
    "complexity-stereo-in-stereo-out": "Stereo in, Stereo out",
}

JOBS_FOR_PROJECT_ID = {
    PROJECT_ID_FLOAT_REPO: JOBS_FLOAT_REPO,
@@ -77,11 +77,7 @@ def main():
        sys.exit(1)

    index_html = PUBLIC_FOLDER.joinpath("index.html")
    if project_id == PROJECT_ID_FLOAT_REPO:
    create_landing_page(jobs, index_html, project_id)
    elif project_id == PROJECT_ID_BASOP_REPO:
        src = pathlib.Path("ci/basop-pages/basop_index.html").absolute()
        shutil.move(src, index_html)

    sys.exit(0)