32
32
timeout-minutes : 60
33
33
env :
34
34
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
35
+ CCACHE_SLOPPINESS : clang_index_store,file_stat_matches,include_file_ctime,include_file_mtime,ivfsoverlay,pch_defines,modules,system_headers,time_macros
36
+ CCACHE_FILECLONE : true
37
+ CCACHE_DEPEND : true
38
+ CCACHE_INODECACHE : true
39
+ CCACHE_LIMIT_MULTIPLE : 0.95
35
40
strategy :
36
41
fail-fast : false
37
42
matrix :
@@ -152,11 +157,6 @@ jobs:
152
157
- name : Build iOS App Debug
153
158
if : contains(matrix.buildmode, 'debug')
154
159
run : |
155
- export CCACHE_SLOPPINESS=clang_index_store,file_stat_matches,include_file_ctime,include_file_mtime,ivfsoverlay,pch_defines,modules,system_headers,time_macros
156
- export CCACHE_FILECLONE=true
157
- export CCACHE_DEPEND=true
158
- export CCACHE_INODECACHE=true
159
- export CCACHE_LIMIT_MULTIPLE=0.95
160
160
ccache -s
161
161
export SKIP_BUNDLING=1
162
162
export RCT_NO_LAUNCH_PACKAGER=1
@@ -170,11 +170,6 @@ jobs:
170
170
- name : Build iOS App Release
171
171
if : contains(matrix.buildmode, 'release')
172
172
run : |
173
- export CCACHE_SLOPPINESS=clang_index_store,file_stat_matches,include_file_ctime,include_file_mtime,ivfsoverlay,pch_defines,modules,system_headers,time_macros
174
- export CCACHE_FILECLONE=true
175
- export CCACHE_DEPEND=true
176
- export CCACHE_INODECACHE=true
177
- export CCACHE_LIMIT_MULTIPLE=0.95
178
173
ccache -s
179
174
export RCT_NO_LAUNCH_PACKAGER=1
180
175
set -o pipefail
0 commit comments