diff --git a/.github/actions/qt5-build/entrypoint.sh b/.github/actions/qt5-build/entrypoint.sh index 2eb47c287d2..8cb293bb715 100755 --- a/.github/actions/qt5-build/entrypoint.sh +++ b/.github/actions/qt5-build/entrypoint.sh @@ -10,6 +10,7 @@ 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 +. "$HOME/.cargo/env" mkdir build && cd build cmake ../source/ \ diff --git a/.github/actions/qt6-build/entrypoint.sh b/.github/actions/qt6-build/entrypoint.sh index e5aa3fd4bfb..74476d85c57 100755 --- a/.github/actions/qt6-build/entrypoint.sh +++ b/.github/actions/qt6-build/entrypoint.sh @@ -10,6 +10,7 @@ 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 +. "$HOME/.cargo/env" mkdir build && cd build qt-cmake ../source/ \