Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
928 B
30 lines
928 B
2 years ago
|
name: Clear expensive caches to prevent unbounded growth
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
# Run every 1st of the month at 10 AM UTC (2 AM PDT)
|
||
|
- cron: 0 10 1 * *
|
||
|
|
||
|
# manual
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
bazel-repository-cache:
|
||
|
strategy:
|
||
|
fail-fast: false # Don't cancel all jobs if one fails.
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||
|
name: Clear Bazel repository cache ${{ runner.os }}
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
steps:
|
||
|
- uses: actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920 # v3.2.4
|
||
|
with:
|
||
|
path: ${{ github.workspace }}/${{ steps.output.outputs.repository-cache }}
|
||
|
key: repository-cache-${{ github.ref_name }}-${{ runner.os }}-reset-${{ github.sha }}
|
||
|
|
||
|
- name: Create an empty cache with a single file
|
||
|
run: |
|
||
|
rm -rf .repository-cache
|
||
|
mkdir -p .repository-cache'
|
||
|
touch .repository-cache/reset_file
|