summary refs log tree commit diff
path: root/src/ci/scripts/setup-upstream-remote.sh
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-01-07 01:26:09 +0000
committerbors <bors@rust-lang.org>2025-01-07 01:26:09 +0000
commit9fc6b43126469e3858e2fe86cafb4f0fd5068869 (patch)
treef51c9d8c08e9551bb12201a96fbd335c6c32be4e /src/ci/scripts/setup-upstream-remote.sh
parent953a5caef005993f93d8fe9baa344cc2591496c2 (diff)
parent6287749471076a3065a5793cb0a1678324e768bb (diff)
downloadrust-9fc6b43126469e3858e2fe86cafb4f0fd5068869.tar.gz
rust-9fc6b43126469e3858e2fe86cafb4f0fd5068869.zip
Auto merge of #135162 - pietroalbini:pa-stable, r=pietroalbini 1.84.0
Prepare Rust 1.84.0 stable release

Included a backport of https://github.com/rust-lang/rust/issues/135034, and squashed the release notes.

r? `@ghost`
Diffstat (limited to 'src/ci/scripts/setup-upstream-remote.sh')
-rwxr-xr-xsrc/ci/scripts/setup-upstream-remote.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/ci/scripts/setup-upstream-remote.sh b/src/ci/scripts/setup-upstream-remote.sh
deleted file mode 100755
index 52b4c98a890..00000000000
--- a/src/ci/scripts/setup-upstream-remote.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-# In CI environments, bootstrap is forced to use the remote upstream based
-# on "git_repository" and "nightly_branch" values from src/stage0 file.
-# This script configures the remote as it may not exist by default.
-
-set -euo pipefail
-IFS=$'\n\t'
-
-ci_dir=$(cd $(dirname $0) && pwd)/..
-source "$ci_dir/shared.sh"
-
-git_repository=$(parse_stage0_file_by_key "git_repository")
-nightly_branch=$(parse_stage0_file_by_key "nightly_branch")
-
-# Configure "rust-lang/rust" upstream remote only when it's not origin.
-if [ -z "$(git config remote.origin.url | grep $git_repository)" ]; then
-    echo "Configuring https://github.com/$git_repository remote as upstream."
-    git remote add upstream "https://github.com/$git_repository"
-    REMOTE_NAME="upstream"
-else
-    REMOTE_NAME="origin"
-fi
-
-git fetch $REMOTE_NAME $nightly_branch