Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ jobs:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # 7.0.0

- name: Setup continuous run
if: ${{ github.event_name == 'schedule' }}
# Force builds and tests to run on scheduled runs.
run: echo "EXTRA_BAZEL_ARGS=--cache_test_results=no --action_env=FORCE_REBUILD=1" >> $GITHUB_ENV

- name: Set up Bazel and caches
uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # 0.19.0
with:
Expand All @@ -80,7 +85,13 @@ jobs:
common --config=remote

- name: Run tests
run: bazel test ... --config=${{ matrix.toolchain }} --compilation_mode=${{ matrix.compilation_mode }} --copt=${{ matrix.exceptions }} ${{ matrix.extra-config }}
run: >
bazel test ...
--config=${{ matrix.toolchain }}
--compilation_mode=${{ matrix.compilation_mode }}
--copt=${{ matrix.exceptions }}
${{ matrix.extra-config }}
${{ env.EXTRA_BAZEL_ARGS }}

# Provide a single predictably-named job for copybara to look for
all-blocking-tests:
Expand Down
Loading