From f63ec151162798b41b625455f72bdd79bf5adebc Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 14 Dec 2022 10:02:20 +0100 Subject: [PATCH] ci: Unconditionally install `protoc` We used to install it only when Rust was configured, but for some reason all builds now seem to be Rust builds. That's ok, so just provide the necessary dependency. --- .github/scripts/setup.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/scripts/setup.sh b/.github/scripts/setup.sh index 83dd289d0..c8c91cef5 100755 --- a/.github/scripts/setup.sh +++ b/.github/scripts/setup.sh @@ -69,7 +69,5 @@ sudo chmod 0440 /etc/sudoers.d/tester elements-$ELEMENTS_VERSION ) -if [ "$RUST" == "1" ]; then - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \ - -y --default-toolchain ${RUST_VERSION} -fi +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \ + -y --default-toolchain ${RUST_VERSION}