Skip to content

Commit

Permalink
Merge branch 'master' into display_location_section
Browse files Browse the repository at this point in the history
  • Loading branch information
f01dab1e committed Aug 28, 2023
2 parents b7c50de + ff62377 commit 2ee9d0e
Show file tree
Hide file tree
Showing 366 changed files with 2,653 additions and 1,212 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/cache-cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This workflow cleans up any cache entries associated with a pull request once it has been closed.
# This prevents us from having many refs/pull/PR_NUMBER/merge cache entries which will never be used.
#
# Note that this will affect both PRs being closed with and without being merged.

name: Cleanup closed PR cache entries

on:
pull_request:
types:
- closed

jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
echo "Fetching list of cache key"
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1 )
## Setting this to not fail the workflow while deleting cache keys.
set +e
echo "Deleting caches..."
for cacheKey in $cacheKeysForPR
do
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm
done
echo "Done"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
env:
BARRETENBERG_BIN_DIR: ${{ github.workspace }}/libbarretenberg-wasm32/bin
run: |
cargo install cross --force --git https://github.com/cross-rs/cross
cargo install cross --version 0.2.5 --force
cross build --package nargo_cli --release --target=${{ matrix.target }} --no-default-features --features plonk_bn254_wasm
- uses: actions/cache/save@v3
Expand Down
Loading

0 comments on commit 2ee9d0e

Please sign in to comment.