diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 49a9fbd8f00..3541685113a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,12 +11,12 @@ workflow: # post-merge pipeline - if: $GITLAB_USER_LOGIN == "marge-bot" && $CI_COMMIT_BRANCH variables: - LAVA_JOB_PRIORITY: 40 + JOB_PRIORITY: 40 VALVE_INFRA_VANGOGH_JOB_PRIORITY: priority:low # any other pipeline - if: $GITLAB_USER_LOGIN != "marge-bot" variables: - LAVA_JOB_PRIORITY: 50 + JOB_PRIORITY: 50 VALVE_INFRA_VANGOGH_JOB_PRIORITY: priority:low - when: always diff --git a/.gitlab-ci/lava/lava_job_submitter.py b/.gitlab-ci/lava/lava_job_submitter.py index e8f1aefecba..b2d8e5306e7 100755 --- a/.gitlab-ci/lava/lava_job_submitter.py +++ b/.gitlab-ci/lava/lava_job_submitter.py @@ -58,7 +58,7 @@ except ImportError as e: # Timeout in seconds to decide if the device from the dispatched LAVA job has # hung or not due to the lack of new log output. -DEVICE_HANGING_TIMEOUT_SEC = int(getenv("LAVA_DEVICE_HANGING_TIMEOUT_SEC", 5*60)) +DEVICE_HANGING_TIMEOUT_SEC = int(getenv("DEVICE_HANGING_TIMEOUT_SEC", 5*60)) # How many seconds the script should wait before try a new polling iteration to # check if the dispatched LAVA job is running or waiting in the job queue. diff --git a/.gitlab-ci/lava/utils/lava_job_definition.py b/.gitlab-ci/lava/utils/lava_job_definition.py index f029f18d4d5..c7b43658cb5 100644 --- a/.gitlab-ci/lava/utils/lava_job_definition.py +++ b/.gitlab-ci/lava/utils/lava_job_definition.py @@ -16,7 +16,7 @@ NUMBER_OF_ATTEMPTS_LAVA_BOOT = int(getenv("LAVA_NUMBER_OF_ATTEMPTS_LAVA_BOOT", 3 # Supports any integers in [0, 100]. # The scheduler considers the job priority when ordering the queue # to consider which job should run next. -JOB_PRIORITY = int(getenv("LAVA_JOB_PRIORITY", 75)) +JOB_PRIORITY = int(getenv("JOB_PRIORITY", 75)) def has_ssh_support(job_submitter: "LAVAJobSubmitter") -> bool: diff --git a/.gitlab-ci/test-source-dep.yml b/.gitlab-ci/test-source-dep.yml index 8d0872d62cd..4320fd8c175 100644 --- a/.gitlab-ci/test-source-dep.yml +++ b/.gitlab-ci/test-source-dep.yml @@ -97,7 +97,7 @@ extends: - .performance-rules variables: - LAVA_JOB_PRIORITY: 40 + JOB_PRIORITY: 40 PIGLIT_REPLAY_SUBCOMMAND: "profile" PIGLIT_REPLAY_EXTRA_ARGS: "--db-path ${CI_PROJECT_DIR}/replayer-db/" # More than this can hit OOM due to BOs leaked during the replay of the last frame @@ -105,7 +105,7 @@ # We don't want for more than one workload to be submitted to the GPU at a time FDO_CI_CONCURRENT: 1 # Piglit is very sparse in its status output and downloads of big traces can take a while - LAVA_DEVICE_HANGING_TIMEOUT_SEC: 600 + DEVICE_HANGING_TIMEOUT_SEC: 600 GIT_STRATEGY: none HWCI_FREQ_MAX: "true" # Always use the same device diff --git a/src/freedreno/ci/gitlab-ci.yml b/src/freedreno/ci/gitlab-ci.yml index 80676af495f..d392f90f19d 100644 --- a/src/freedreno/ci/gitlab-ci.yml +++ b/src/freedreno/ci/gitlab-ci.yml @@ -82,7 +82,7 @@ - !reference [.freedreno-manual-rules, rules] allow_failure: true # see comment in .performance-rules, which we don't inherit this line from. variables: - LAVA_JOB_PRIORITY: 40 + JOB_PRIORITY: 40 # Ensure that we are using the release build artifact S3_ARTIFACT_NAME: mesa-arm64-default-release needs: @@ -518,7 +518,7 @@ a630-traces-performance: # We don't want for more than one workload to be submitted to the GPU at a time FDO_CI_CONCURRENT: 1 # Piglit is very sparse in its status output and downloads of big traces can take a while - LAVA_DEVICE_HANGING_TIMEOUT_SEC: 600 + DEVICE_HANGING_TIMEOUT_SEC: 600 # So we aren't capped by VSync by the X server EGL_PLATFORM: surfaceless GIT_STRATEGY: none diff --git a/src/gallium/drivers/virgl/ci/gitlab-ci.yml b/src/gallium/drivers/virgl/ci/gitlab-ci.yml index 8f5adc40478..9b83613735b 100644 --- a/src/gallium/drivers/virgl/ci/gitlab-ci.yml +++ b/src/gallium/drivers/virgl/ci/gitlab-ci.yml @@ -32,7 +32,7 @@ when: manual allow_failure: true # see comment in .performance-rules, which we don't inherit this line from. variables: - LAVA_JOB_PRIORITY: 40 + JOB_PRIORITY: 40 S3_ARTIFACT_NAME: "mesa-x86_64-default-release" needs: - kernel+rootfs_x86_64 diff --git a/src/intel/ci/gitlab-ci.yml b/src/intel/ci/gitlab-ci.yml index 1c368608e07..20c96c686d7 100644 --- a/src/intel/ci/gitlab-ci.yml +++ b/src/intel/ci/gitlab-ci.yml @@ -75,7 +75,7 @@ when: manual allow_failure: true # see comment in .performance-rules, which we don't inherit this line from. variables: - LAVA_JOB_PRIORITY: 40 + JOB_PRIORITY: 40 S3_ARTIFACT_NAME: "mesa-x86_64-default-release" needs: - kernel+rootfs_x86_64 @@ -447,7 +447,7 @@ iris-cml-traces: # We don't want for more than one workload to be submitted to the GPU at a time FDO_CI_CONCURRENT: 1 # Piglit is very sparse in its status output and downloads of big traces can take a while - LAVA_DEVICE_HANGING_TIMEOUT_SEC: 600 + DEVICE_HANGING_TIMEOUT_SEC: 600 # So we aren't capped by VSync by the X server EGL_PLATFORM: surfaceless GIT_STRATEGY: none