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.
This commit is contained in:
Christian Decker 2022-12-14 10:02:20 +01:00
parent 465d9121bf
commit f63ec15116

View file

@ -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}