Skip to content

Commit 1360bb9

Browse files
Deploy UE5 nightly to Cloudflare R2 (#9859)
Switch the deploy endpoint from Backblaze B2 to the Cloudflare R2 bucket serving downloads.carlasim.com; the AWS_* repository secrets now hold the R2 credentials. Point the nightly download link and the CI summary URL at the public download domain. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 0a5ce0d commit 1360bb9

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Docs/download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is an automated build with the latest changes pushed to our `ue5-dev`
1010
branch. It contains the very latest fixes and features that will be part of the
1111
next release, but also some experimental changes. Use at your own risk!
1212

13-
- [CARLA Nightly Build (Linux)](https://s3.us-east-005.backblazeb2.com/carla-releases/Linux/Dev/CARLA_UE5_Latest.tar.gz)
13+
- [CARLA Nightly Build (Linux)](https://downloads.carlasim.com/Linux/Dev/CARLA_UE5_Latest.tar.gz)
1414

1515
<p><a id="last-run-link" href='https://github.com/carla-simulator/carla/actions'>Last successful build</a>: <span id="last-run-time" class="loading">Loading...</span></p>
1616

Util/Tools/Deploy.sh

100755100644
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
88

99
REPLACE_LATEST=false
1010
AWS_COPY="aws s3 cp"
11-
ENDPOINT="https://s3.us-east-005.backblazeb2.com"
11+
ENDPOINT="https://1b808339cbe94fecce530dfada93713b.r2.cloudflarestorage.com"
1212
SUMMARY_OUTPUT_PATH=
1313

1414
# ==============================================================================
@@ -68,9 +68,9 @@ fi
6868
NIGHTLY_DEPLOY_NAME=$(git log --pretty=format:'%cd_%h' --date=format:'%Y%m%d' -n 1).tar.gz
6969
LATEST_DEPLOY_NAME="CARLA_UE5_Latest.tar.gz"
7070

71-
# Backblaze bucket paths
71+
# Cloudflare R2 bucket paths
7272
S3_PREFIX=s3://carla-releases/Linux
73-
URL_PREFIX=${ENDPOINT}/carla-releases/Linux
73+
URL_PREFIX=https://downloads.carlasim.com/Linux
7474

7575
NIGHTLY_DEPLOY_URI=${S3_PREFIX}/Dev/${NIGHTLY_DEPLOY_NAME}
7676
LATEST_DEPLOY_URI=${S3_PREFIX}/Dev/${LATEST_DEPLOY_NAME}

0 commit comments

Comments
 (0)