File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 2121
2222jobs :
2323 test-rewatch :
24- runs-on : macos-14
24+ runs-on : ubuntu-latest
2525 env :
2626 RUST_BACKTRACE : " 1"
2727
3838 id : build-cache
3939 uses : actions/cache@v4
4040 with :
41- path : rewatch/targed
42- key : rewatch-build-v2-aarch64-apple-darwin-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
43-
44- - name : Install musl gcc
45- if : steps.build-cache.outputs.cache-hit != 'true' && runner.os == 'Linux'
46- run : sudo apt-get install -y --no-install-recommends musl-tools
41+ path : rewatch/target
42+ key : rewatch-build-v2-${{ runner.os }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
4743
4844 - name : Install rust toolchain
4945 if : steps.build-cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change 1717bold " Make sure the testrepo is clean"
1818if git diff --exit-code ../testrepo & > diff.txt;
1919then
20+ rm diff.txt
2021 success " Testrepo has no changes"
2122else
2223 error " Testrepo is not clean to start with"
2324 cat diff.txt
25+ rm diff.txt
2426 exit 1
2527fi
2628
You can’t perform that action at this time.
0 commit comments