Skip to content

Commit

Permalink
build: Enable windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
satreix committed Jul 30, 2023
1 parent 198da76 commit e9b6266
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
os:
- macos-latest
- ubuntu-latest
- windows-latest
name: check - (${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -39,5 +40,10 @@ jobs:
- name: Copy .bazelrc
run: cp tools/ci/bazel.rc $HOME/.bazelrc

- name: Test
run: bazel.exe test -k --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_API_KEY }} //...
if: ${{ matrix.os == 'windows-latest' }}

- name: Test
run: bazel test --remote_header=x-buildbuddy-api-key=${{ secrets.BUILDBUDDY_API_KEY }} //...
if: ${{ matrix.os != 'windows-latest' }}

0 comments on commit e9b6266

Please sign in to comment.