diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 0000000000000..04133acc5226b --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,2 @@ +# Reformat everything (#617) +02a4048b547e0c00c65856f47351c4ecf0163268 diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 555662ffa9cf8..cd53db9371d53 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -189,6 +189,10 @@ jobs: path: dist/* retention-days: 7 + - name: Fix Cache Permissions + run: | + sudo -n chmod -R 0777 /tmp/build-cache || true + build_and_test_cpu_mac: name: Build and Test macos (CPU) needs: check_files @@ -283,7 +287,8 @@ jobs: uses: actions/cache@v3 if: needs.check_files.outputs.run_job == 'true' with: - path: ${{ env.LocalAppData }}/build-cache + # env.LocalAppData is not usable according to actions/cache README + path: ~/AppData/Local/build-cache key: build-cache-win64-cpu-${{ github.sha }} restore-keys: | build-cache-win64-cpu-