ci: remove LAVA prefix from variables which can be used also elsewhere
At least these two can be easily used in bare-metal or Labgrid setups. Currently I already have MR for implementing these for Labgrid. Reviewed-by: Guilherme Gallo <guilherme.gallo@collabora.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24665>
This commit is contained in:

committed by
Marge Bot

parent
8f3499bafc
commit
3a4bdf26e6
@@ -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
|
||||
|
||||
|
@@ -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.
|
||||
|
@@ -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:
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user