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

Merge branch 'fix_pages_job' into 'main'

Fix pages setup script once more... :'(

See merge request !356
parents cd2a8a1d 8e5fc056
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ JOBS = [
    "complexity-stereo-in-stereo-out", "complexity-ism-in-binaural-out", "complexity-sba-hoa3-in-hoa3-out", "complexity-mc-in-7_1_4-out", "complexity-masa-in-7_1_4-out", "complexity-StereoDmxEVS-stereo-in-mono-out", "coverage-test-on-main-scheduled"
]
ARTIFACTS = "artifacts.zip"
API_URL_BASE = "https://forge.3gpp.org/rep/api/v4/projects/$CI_PROJECT_ID/jobs"
API_URL_BASE = "https://forge.3gpp.org/rep/api/v4/projects/{}/jobs"
PUBLIC = "./public"


@@ -47,7 +47,7 @@ def curl_for_artifacts(job_id):
        "curl",
        "--request",
        "GET",
        API_URL_BASE + f"/{job_id}/artifacts",
        API_URL_BASE.format(os.environ["CI_PROJECT_ID"]) + f"/{job_id}/artifacts",
        "--output",
        ARTIFACTS
    ]