summaryrefslogtreecommitdiffhomepage
path: root/ci
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2025-10-16 14:41:08 +0200
committerLinus Färnstrand <linus@mullvad.net>2025-10-16 14:41:08 +0200
commitf61724d532c0ea5fc90a535235458668e719ddee (patch)
treecf89af28c980bd0a830df103319b5788a928cdb5 /ci
parentf1507c141413d2735e5c09bbd0e3af10646dff05 (diff)
downloadmullvadvpn-f61724d532c0ea5fc90a535235458668e719ddee.tar.xz
mullvadvpn-f61724d532c0ea5fc90a535235458668e719ddee.zip
Stop running `rustup update`. Version is handled by rust-toolchain.toml
Diffstat (limited to 'ci')
-rwxr-xr-xci/buildserver-build.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/ci/buildserver-build.sh b/ci/buildserver-build.sh
index 4a5cf6790f..00e20a078c 100755
--- a/ci/buildserver-build.sh
+++ b/ci/buildserver-build.sh
@@ -189,12 +189,6 @@ function build_ref {
checkout_ref "$ref" || return 1
- # When we build in containers, the updating of toolchains is done by updating containers.
- if [[ "$(uname -s)" != "Linux" ]]; then
- echo "Updating Rust toolchain..."
- rustup update
- fi
-
# podman appends a trailing carriage return to the output. So we use `tr` to strip it
local version=""
version="$(run_in_build_env cargo run -q --bin mullvad-version | tr -d "\r" || return 1)"