Skip to content

Commit

Permalink
Merge pull request #25 from hexdae/bazel-seven-support
Browse files Browse the repository at this point in the history
[BAZEL] bazel seven support
  • Loading branch information
hexdae authored Dec 16, 2023
2 parents fb31092 + 4e3c11c commit 4f3f31d
Show file tree
Hide file tree
Showing 10 changed files with 1,971 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.4.0
7.0.0
5 changes: 4 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build examples
- name: Build examples
run: |
bazelisk build //examples/...
- name: Bazel backwards compatibility
run: |
USE_BAZEL_VERSION=6.4.0 bazelisk build //examples/...
5 changes: 4 additions & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: build examples
- name: Build examples
run: |
bazelisk build //examples/...
- name: Bazel backwards compatibility
run: |
USE_BAZEL_VERSION=6.4.0 bazelisk build //examples/...
6 changes: 5 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: build examples
- name: Build examples
run: |
bazelisk build //examples/...
- name: Bazel backwards compatibility
run: |
$Env:USE_BAZEL_VERSION = "6.4.0"
bazelisk build //examples/...
Loading

0 comments on commit 4f3f31d

Please sign in to comment.