File tree Expand file tree Collapse file tree 2 files changed +0
-20
lines changed Expand file tree Collapse file tree 2 files changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -40,16 +40,10 @@ jobs:
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
48
46
- uses : mozilla-actions/sccache-action@v0.0.7
49
- - uses : actions/cache@v4
50
- with :
51
- path : ~/dist
52
- key : dist-${{ matrix.opencv-version }}
53
47
54
48
- uses : actions/cache@v4
55
49
with :
@@ -153,17 +147,10 @@ jobs:
153
147
OPENCV_VERSION : 4.11.0
154
148
SCCACHE_GHA_ENABLED : " true"
155
149
RUSTC_WRAPPER : " sccache"
156
- CMAKE_C_COMPILER_LAUNCHER : " sccache"
157
- CMAKE_CXX_COMPILER_LAUNCHER : " sccache"
158
150
steps :
159
151
- uses : actions/checkout@v4
160
152
- uses : mozilla-actions/sccache-action@v0.0.7
161
153
162
- - uses : actions/cache@v4
163
- with :
164
- path : ~/dist
165
- key : dist-${{ env.OPENCV_VERSION }}
166
-
167
154
- uses : actions/cache@v4
168
155
with :
169
156
path : ~/build
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