summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-04-21 12:55:39 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-04-26 01:38:19 +0000
commitdd78aa053bdfcbd4b64e516a6d252a51595581eb (patch)
tree2be8c799c500178eec9f69ec78098019b79197b2 /ci
parent9dda8050f2468213ec75cb0bea599106d9989664 (diff)
downloadgstreamer-dd78aa053bdfcbd4b64e516a6d252a51595581eb.tar.gz
ci: Update to Rust 1.69
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4468>
Diffstat (limited to 'ci')
-rw-r--r--ci/docker/fedora/prepare.sh2
-rw-r--r--ci/docker/windows/install_rust.ps12
2 files changed, 2 insertions, 2 deletions
diff --git a/ci/docker/fedora/prepare.sh b/ci/docker/fedora/prepare.sh
index 8e9c157351..b2f2b5a5ca 100644
--- a/ci/docker/fedora/prepare.sh
+++ b/ci/docker/fedora/prepare.sh
@@ -221,7 +221,7 @@ rm -f *.rpm
# Install Rust
RUSTUP_VERSION=1.25.2
-RUST_VERSION=1.68.2
+RUST_VERSION=1.69.0
RUST_ARCH="x86_64-unknown-linux-gnu"
dnf install -y wget
diff --git a/ci/docker/windows/install_rust.ps1 b/ci/docker/windows/install_rust.ps1
index 603a9cbe0f..ce99e2ced7 100644
--- a/ci/docker/windows/install_rust.ps1
+++ b/ci/docker/windows/install_rust.ps1
@@ -1,6 +1,6 @@
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
-$rust_version = '1.68.2'
+$rust_version = '1.69.0'
$rustup_url = 'https://win.rustup.rs/x86_64'
Invoke-WebRequest -Uri $rustup_url -OutFile C:\rustup-init.exe