From 8c16abb6bffe8f772c7ab5ccab02be658476c501 Mon Sep 17 00:00:00 2001 From: Miguel Osorio Date: Tue, 18 Aug 2026 22:48:21 +0000 Subject: [PATCH] [ci] Remove bazel-contrib/setup-bazel from ci.yml `bazel-contrib/setup-bazel` forces the `--output_base` in ~/.bazelrc to have consistent file prefixes across execution environments. This is not required in the GitHub self-hosted runner setup as the Bazel cache is setup in self-hosted workspace. Signed-off-by: Miguel Osorio --- .github/workflows/ci.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ebfa5325..ee51d3c06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,13 +19,6 @@ jobs: steps: - uses: actions/checkout@v7 - - name: Setup Bazel - uses: bazel-contrib/setup-bazel@0.19.0 - with: - bazelisk-cache: false - disk-cache: false - repository-cache: false - - name: Presubmit Checks # The presubmit workflow performs formatting checks, license checks # C/C++ include checks and clippy lints. @@ -39,13 +32,6 @@ jobs: steps: - uses: actions/checkout@v7 - - name: Setup Bazel - uses: bazel-contrib/setup-bazel@0.19.0 - with: - bazelisk-cache: false - disk-cache: false - repository-cache: false - - name: Run tests # See workflows.json for the `ci` definition. run: ./pw ci @@ -58,13 +44,6 @@ jobs: steps: - uses: actions/checkout@v7 - - name: Setup Bazel - uses: bazel-contrib/setup-bazel@0.19.0 - with: - bazelisk-cache: false - disk-cache: false - repository-cache: false - - name: Build # See workflows.json for the `default` definition. run: ./pw default