File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change 40
40
OPENCV_LINKAGE : ${{ matrix.linkage }}
41
41
SCCACHE_GHA_ENABLED : " true"
42
42
RUSTC_WRAPPER : " sccache"
43
- CMAKE_C_COMPILER_LAUNCHER : " sccache"
44
- CMAKE_CXX_COMPILER_LAUNCHER : " sccache"
45
43
steps :
46
44
- uses : actions/checkout@v4
47
45
- uses : dtolnay/rust-toolchain@stable
@@ -153,8 +151,6 @@ jobs:
153
151
OPENCV_VERSION : 4.11.0
154
152
SCCACHE_GHA_ENABLED : " true"
155
153
RUSTC_WRAPPER : " sccache"
156
- CMAKE_C_COMPILER_LAUNCHER : " sccache"
157
- CMAKE_CXX_COMPILER_LAUNCHER : " sccache"
158
154
steps :
159
155
- uses : actions/checkout@v4
160
156
- uses : mozilla-actions/sccache-action@v0.0.7
Original file line number Diff line number Diff line change @@ -22,13 +22,6 @@ if [[ "$os_family" == "Linux" ]]; then
22
22
if [[ " ${VCPKG_VERSION:- } " != " " ]]; then # vcpkg build
23
23
" $ci_dir /install-ubuntu-vcpkg.sh"
24
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
- fi
32
25
" $ci_dir /install-ubuntu.sh"
33
26
fi
34
27
elif [[ " $os_family " == " macOS" ]]; then
You can’t perform that action at this time.
0 commit comments