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.
|
|
|
name: Staleness tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Run daily at 10 AM UTC (2 AM PDT)
|
|
|
|
- cron: 0 10 * * *
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
branch: [main, 22.x]
|
|
|
|
os: [{ name: Linux, value: ubuntu-latest}]
|
|
|
|
|
|
|
|
name: Test staleness ${{ matrix.os.name }} ${{ matrix.branch}}
|
|
|
|
runs-on: ${{ matrix.os.value }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout ${{ matrix.branch }}
|
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
|
|
with:
|
|
|
|
ref: ${{ matrix.branch}}
|
|
|
|
|
|
|
|
- name: Run all staleness tests
|
|
|
|
uses: ./.github/actions/bazel
|
|
|
|
with:
|
|
|
|
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
|
|
|
|
bazel-cache: staleness_check/${{ matrix.branch}}_${{ matrix.os.value }}
|
|
|
|
bash: bazel query 'attr(tags, "staleness_test", //...)' | xargs bazel test $BAZEL_FLAGS
|