diff options
author | Dennis van der Schagt <dennisschagt@gmail.com> | 2024-10-20 01:19:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-20 01:19:26 +0200 |
commit | 1ea89e860553634e37daf1cc6de2e00a379d6378 (patch) | |
tree | 42e7a83404cd949f1ba39a4d376d706fba6c3616 | |
parent | 2516b3ece47d2d57e60aa799875c491cc83c216f (diff) | |
parent | 7b2bb3c5c64c2489ec287771d202ad150f6b7ae7 (diff) |
CI: Bump Rust to 1.82.0
-rw-r--r-- | docker/ubuntu_18.04-build-tools.dockerfile | 6 | ||||
-rw-r--r-- | docker/ubuntu_18.04-i686.dockerfile | 2 | ||||
-rw-r--r-- | docker/ubuntu_20.04-build-tools.dockerfile | 6 | ||||
-rw-r--r-- | docker/ubuntu_22.04-build-tools.dockerfile | 6 | ||||
-rw-r--r-- | docker/ubuntu_24.04-build-tools.dockerfile | 6 |
5 files changed, 13 insertions, 13 deletions
diff --git a/docker/ubuntu_18.04-build-tools.dockerfile b/docker/ubuntu_18.04-build-tools.dockerfile index 65617dac..ec9bd8db 100644 --- a/docker/ubuntu_18.04-build-tools.dockerfile +++ b/docker/ubuntu_18.04-build-tools.dockerfile @@ -1,10 +1,10 @@ # All the programs and libraries necessary to build Newsboat. Contains GCC 8 -# and Rust 1.80.1 by default. +# and Rust 1.82.0 by default. # # Configurable via build-args: # # - cxx_package -- additional Ubuntu packages to install. Default: g++-8 -# - rust_version -- Rust version to install. Default: 1.80.1 +# - rust_version -- Rust version to install. Default: 1.82.0 # - cc -- C compiler to use. This gets copied into CC environment variable. # Default: gcc-8 # - cxx -- C++ compiler to use. This gets copied into CXX environment variable. @@ -97,7 +97,7 @@ ENV LC_ALL en_US.UTF-8 USER builder WORKDIR /home/builder/src -ARG rust_version=1.80.1 +ARG rust_version=1.82.0 RUN wget -O $HOME/rustup.sh --secure-protocol=TLSv1_2 https://sh.rustup.rs \ && chmod +x $HOME/rustup.sh \ diff --git a/docker/ubuntu_18.04-i686.dockerfile b/docker/ubuntu_18.04-i686.dockerfile index 825acd43..86273973 100644 --- a/docker/ubuntu_18.04-i686.dockerfile +++ b/docker/ubuntu_18.04-i686.dockerfile @@ -86,7 +86,7 @@ RUN wget -O $HOME/rustup.sh --secure-protocol=TLSv1_2 https://sh.rustup.rs \ && chmod +x $HOME/rustup.sh \ && $HOME/rustup.sh -y \ --default-host i686-unknown-linux-gnu \ - --default-toolchain 1.80.1 \ + --default-toolchain 1.82.0 \ && chmod a+w $HOME/.cargo ENV HOME /home/builder diff --git a/docker/ubuntu_20.04-build-tools.dockerfile b/docker/ubuntu_20.04-build-tools.dockerfile index 6d70e248..6155e9d0 100644 --- a/docker/ubuntu_20.04-build-tools.dockerfile +++ b/docker/ubuntu_20.04-build-tools.dockerfile @@ -1,10 +1,10 @@ # All the programs and libraries necessary to build Newsboat with newer -# compilers. Contains GCC 9 and Rust 1.80.1 by default. +# compilers. Contains GCC 9 and Rust 1.82.0 by default. # # Configurable via build-args: # # - cxx_package -- additional Ubuntu packages to install. Default: g++-9 -# - rust_version -- Rust version to install. Default: 1.80.1 +# - rust_version -- Rust version to install. Default: 1.82.0 # - cc -- C compiler to use. This gets copied into CC environment variable. # Default: gcc-9 # - cxx -- C++ compiler to use. This gets copied into CXX environment variable. @@ -97,7 +97,7 @@ ENV LC_ALL en_US.UTF-8 USER builder WORKDIR /home/builder/src -ARG rust_version=1.80.1 +ARG rust_version=1.82.0 RUN wget -O $HOME/rustup.sh --secure-protocol=TLSv1_2 https://sh.rustup.rs \ && chmod +x $HOME/rustup.sh \ diff --git a/docker/ubuntu_22.04-build-tools.dockerfile b/docker/ubuntu_22.04-build-tools.dockerfile index 6df5ee5b..573662ec 100644 --- a/docker/ubuntu_22.04-build-tools.dockerfile +++ b/docker/ubuntu_22.04-build-tools.dockerfile @@ -1,10 +1,10 @@ # All the programs and libraries necessary to build Newsboat with newer -# compilers. Contains GCC 12 and Rust 1.80.1 by default. +# compilers. Contains GCC 12 and Rust 1.82.0 by default. # # Configurable via build-args: # # - cxx_package -- additional Ubuntu packages to install. Default: g++-12 -# - rust_version -- Rust version to install. Default: 1.80.1 +# - rust_version -- Rust version to install. Default: 1.82.0 # - cc -- C compiler to use. This gets copied into CC environment variable. # Default: gcc-12 # - cxx -- C++ compiler to use. This gets copied into CXX environment variable. @@ -98,7 +98,7 @@ ENV LC_ALL en_US.UTF-8 USER builder WORKDIR /home/builder/src -ARG rust_version=1.80.1 +ARG rust_version=1.82.0 RUN wget -O $HOME/rustup.sh --secure-protocol=TLSv1_2 https://sh.rustup.rs \ && chmod +x $HOME/rustup.sh \ diff --git a/docker/ubuntu_24.04-build-tools.dockerfile b/docker/ubuntu_24.04-build-tools.dockerfile index bf1271a3..e946f861 100644 --- a/docker/ubuntu_24.04-build-tools.dockerfile +++ b/docker/ubuntu_24.04-build-tools.dockerfile @@ -1,10 +1,10 @@ # All the programs and libraries necessary to build Newsboat with newer -# compilers. Contains GCC 14 and Rust 1.80.1 by default. +# compilers. Contains GCC 14 and Rust 1.82.0 by default. # # Configurable via build-args: # # - cxx_package -- additional Ubuntu packages to install. Default: g++-14 -# - rust_version -- Rust version to install. Default: 1.80.1 +# - rust_version -- Rust version to install. Default: 1.82.0 # - cc -- C compiler to use. This gets copied into CC environment variable. # Default: gcc-14 # - cxx -- C++ compiler to use. This gets copied into CXX environment variable. @@ -99,7 +99,7 @@ ENV LC_ALL en_US.UTF-8 USER builder WORKDIR /home/builder/src -ARG rust_version=1.80.1 +ARG rust_version=1.82.0 RUN wget -O $HOME/rustup.sh --secure-protocol=TLSv1_2 https://sh.rustup.rs \ && chmod +x $HOME/rustup.sh \ |