Skip to content

Commit 3221e01

Browse files
committed
ci: prioritize staging-* builds higher
These builds are high-priority backports and we want them to get through the queue as quickly as possible. Epic: DEVINF-1449 Release note: None
1 parent ab84c1d commit 3221e01

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build/github/engflow-args.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010

1111
ARGS='--config engflowpublic --tls_client_certificate=/home/agent/engflow.crt --tls_client_key=/home/agent/engflow.key --experimental_build_event_upload_retry_minimum_delay 3s --experimental_build_event_upload_max_retries 8'
1212

13-
if [ "$GITHUB_ACTIONS_BRANCH" == "staging" ]
13+
if [[ "$GITHUB_ACTIONS_BRANCH" == staging-* ]]
14+
then
15+
ARGS="$ARGS --remote_execution_priority=8"
16+
elif [ "$GITHUB_ACTIONS_BRANCH" == "staging" ]
1417
then
1518
ARGS="$ARGS --remote_execution_priority=6"
1619
fi

0 commit comments

Comments
 (0)