summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexander Batischev <eual.jp@gmail.com> 2024-03-22 22:47:49 +0300
committerGravatar Alexander Batischev <eual.jp@gmail.com> 2024-03-22 22:47:49 +0300
commit8c96c06b248b3bc19e3ab6c486a3802b10b3d12c (patch)
tree3cc6907ec20da30745da4c03b4ccace25dfbfd9d
parent1e4a28928f8e6ef6b6809d30232824b80c787e9b (diff)
downloadnewsboat-8c96c06b248b3bc19e3ab6c486a3802b10b3d12c.tar.gz
newsboat-8c96c06b248b3bc19e3ab6c486a3802b10b3d12c.tar.zst
newsboat-8c96c06b248b3bc19e3ab6c486a3802b10b3d12c.zip
CI: update to Rust 1.77.0
-rw-r--r--docker/ubuntu_18.04-build-tools.dockerfile6
-rw-r--r--docker/ubuntu_18.04-i686.dockerfile2
-rw-r--r--docker/ubuntu_20.04-build-tools.dockerfile6
-rw-r--r--docker/ubuntu_22.04-build-tools.dockerfile6
-rw-r--r--docker/ubuntu_23.10-build-tools.dockerfile6
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 b86b9d54..c011097a 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.76.0 by default.
+# and Rust 1.77.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.76.0
+# - rust_version -- Rust version to install. Default: 1.77.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.
@@ -91,7 +91,7 @@ ENV LC_ALL en_US.UTF-8
USER builder
WORKDIR /home/builder/src
-ARG rust_version=1.76.0
+ARG rust_version=1.77.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 41dbcc77..40636d2e 100644
--- a/docker/ubuntu_18.04-i686.dockerfile
+++ b/docker/ubuntu_18.04-i686.dockerfile
@@ -82,7 +82,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.76.0 \
+ --default-toolchain 1.77.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 6277241b..8ff30f86 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.76.0 by default.
+# compilers. Contains GCC 9 and Rust 1.77.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.76.0
+# - rust_version -- Rust version to install. Default: 1.77.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.
@@ -91,7 +91,7 @@ ENV LC_ALL en_US.UTF-8
USER builder
WORKDIR /home/builder/src
-ARG rust_version=1.76.0
+ARG rust_version=1.77.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 18ed4c2e..2284df88 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.76.0 by default.
+# compilers. Contains GCC 12 and Rust 1.77.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.76.0
+# - rust_version -- Rust version to install. Default: 1.77.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.
@@ -92,7 +92,7 @@ ENV LC_ALL en_US.UTF-8
USER builder
WORKDIR /home/builder/src
-ARG rust_version=1.76.0
+ARG rust_version=1.77.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_23.10-build-tools.dockerfile b/docker/ubuntu_23.10-build-tools.dockerfile
index beaddd79..6c83a6f1 100644
--- a/docker/ubuntu_23.10-build-tools.dockerfile
+++ b/docker/ubuntu_23.10-build-tools.dockerfile
@@ -1,10 +1,10 @@
# All the programs and libraries necessary to build Newsboat with newer
-# compilers. Contains GCC 13 and Rust 1.76.0 by default.
+# compilers. Contains GCC 13 and Rust 1.77.0 by default.
#
# Configurable via build-args:
#
# - cxx_package -- additional Ubuntu packages to install. Default: g++-13
-# - rust_version -- Rust version to install. Default: 1.76.0
+# - rust_version -- Rust version to install. Default: 1.77.0
# - cc -- C compiler to use. This gets copied into CC environment variable.
# Default: gcc-13
# - cxx -- C++ compiler to use. This gets copied into CXX environment variable.
@@ -49,7 +49,7 @@ ENV LC_ALL en_US.UTF-8
USER builder
WORKDIR /home/builder/src
-ARG rust_version=1.76.0
+ARG rust_version=1.77.0
RUN wget -O $HOME/rustup.sh --secure-protocol=TLSv1_2 https://sh.rustup.rs \
&& chmod +x $HOME/rustup.sh \