From 828199befb6b3ef2e819f1fb1d66a364029db22d Mon Sep 17 00:00:00 2001 From: David Vo Date: Sat, 26 Apr 2025 14:46:40 +1000 Subject: [PATCH] [ci] Use Bazel fastbuild compilation mode on Windows (#7925) --- .github/workflows/bazel.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index b85222db9b..3b93739f3a 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -31,8 +31,8 @@ jobs: with: token: ${{ secrets.BUILDBUDDY_API_KEY }} - - name: Build Release - run: bazel --output_user_root=C:\\bazelroot ${{ matrix.action }} -k ... --config=ci -c opt ${{ matrix.config }} --verbose_failures + - name: bazel ${{ matrix.action }} + run: bazel --output_user_root=C:\\bazelroot ${{ matrix.action }} -k ... --config=ci ${{ matrix.config }} --verbose_failures shell: bash build-mac: @@ -47,7 +47,7 @@ jobs: with: token: ${{ secrets.BUILDBUDDY_API_KEY }} - - name: Build Release + - name: bazel test (release) run: bazel test -k ... --config=ci -c opt --config=macos --nojava_header_compilation --verbose_failures shell: bash @@ -70,7 +70,7 @@ jobs: with: token: ${{ secrets.BUILDBUDDY_API_KEY }} - - name: Build and Test Release + - name: bazel ${{ matrix.action }} (release) run: bazel ${{ matrix.action }} ... --config=ci -c opt ${{ matrix.config }} -k --verbose_failures buildifier: