Skip to content

Commit 0af4fa3

Browse files
PR -> SHARED_PR
1 parent 7ee0842 commit 0af4fa3

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.env-dummy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PR_BINARIES_MIRROR_BASE_URL=s3://spack-binaries-prs/testing
1414
PR_BINARIES_BASE_BRANCH=develop
1515

1616
# Number of days to keep shared PR binaries in mirror
17-
PR_MIRROR_RETIRE_AFTER_DAYS=7
17+
SHARED_PR_MIRROR_RETIRE_AFTER_DAYS=7
1818

1919
# Optionally customize the name of the task queues
2020
TASK_QUEUE_SHORT=devtasks

spackbot/helpers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141
pr_mirror_base_url = os.environ.get(
4242
"PR_BINARIES_MIRROR_BASE_URL", "s3://spack-binaries-prs"
4343
)
44-
pr_mirror_retire_after_days = os.environ.get("PR_MIRROR_RETIRE_AFTER_DAYS", 7)
44+
shared_pr_mirror_retire_after_days = os.environ.get(
45+
"SHARED_PR_MIRROR_RETIRE_AFTER_DAYS", 7
46+
)
4547
pr_shared_mirror = "shared_pr_mirror"
4648
pr_expected_base = os.environ.get("PR_BINARIES_BASE_BRANCH", "develop")
4749

0 commit comments

Comments
 (0)