File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -148,8 +148,7 @@ test_script:
148
148
- sh src/ci/run.sh
149
149
150
150
on_failure :
151
- - cat %CD%\sccache.log
152
- - cat C:\Users\appveyor\AppData\Local\Temp\1\build-cache-logs\*.log
151
+ - cat %CD%\sccache.log || exit 0
153
152
154
153
cache :
155
154
- C:\cache\rustsrc
Original file line number Diff line number Diff line change @@ -41,6 +41,8 @@ if [ ! -f "$cache_valid_file" ]; then
41
41
rm -rf " $CACHE_DIR "
42
42
mkdir " $CACHE_DIR "
43
43
else
44
+ # Ignore errors while gathering information about the possible brokenness
45
+ # of the git repo since our gathered info will tell us something is wrong
44
46
set +o errexit
45
47
stat_lines=$( cd " $cache_src_dir " && git status --porcelain | wc -l)
46
48
stat_ec=$( cd " $cache_src_dir " && git status > /dev/null 2>&1 ; echo $? )
You can’t perform that action at this time.
0 commit comments