From 188baa9e6081d0855a11d440a14501d0554f8327 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Mon, 5 Aug 2024 13:44:09 -0400 Subject: [PATCH] add rust to qt docker build --- .github/actions/qt5-build/entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/qt5-build/entrypoint.sh b/.github/actions/qt5-build/entrypoint.sh index e651013cda7..2eb47c287d2 100755 --- a/.github/actions/qt5-build/entrypoint.sh +++ b/.github/actions/qt5-build/entrypoint.sh @@ -8,6 +8,9 @@ set -x export CCACHE_DIR="$GITHUB_WORKSPACE/.ccache" export PATH="$QT_ROOT_DIR/bin:$PATH" +echo "Downloading and installing Rust..." +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal + mkdir build && cd build cmake ../source/ \ -G Ninja \