We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 016e090 commit 691eba6Copy full SHA for 691eba6
ci/install.sh
@@ -22,6 +22,13 @@ if [[ "$os_family" == "Linux" ]]; then
22
if [[ "${VCPKG_VERSION:-}" != "" ]]; then # vcpkg build
23
"$ci_dir/install-ubuntu-vcpkg.sh"
24
else
25
+ # workaround for mozilla/sccache action problem /bin/sh: 1: sccache: not found when running `sudo make install`
26
+ if [[ "${CMAKE_C_COMPILER_LAUNCHER:-}" == "sccache" ]]; then
27
+ export CMAKE_C_COMPILER_LAUNCHER="$(which sccache)"
28
+ fi
29
+ if [[ "${CMAKE_CXX_COMPILER_LAUNCHER:-}" == "sccache" ]]; then
30
+ export CMAKE_CXX_COMPILER_LAUNCHER="$(which sccache)"
31
32
"$ci_dir/install-ubuntu.sh"
33
fi
34
elif [[ "$os_family" == "macOS" ]]; then
0 commit comments