-
Notifications
You must be signed in to change notification settings - Fork 624
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vertexwahn <[email protected]>
- Loading branch information
1 parent
8743203
commit 068bddc
Showing
5 changed files
with
33 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.0.0 | ||
7.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,10 +45,10 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4.1.1 | ||
|
||
- name: Mount Bazel cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4.0.0 | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazel-ubuntu-22 | ||
|
@@ -66,10 +66,10 @@ jobs: | |
runs-on: windows-2022 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4.1.1 | ||
|
||
- name: Mount Bazel cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4.0.0 | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazel-windows-2022 | ||
|
@@ -87,10 +87,10 @@ jobs: | |
runs-on: macos-13 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4.1.1 | ||
|
||
- name: Mount Bazel cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4.0.0 | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazel-macos-13 | ||
|
@@ -102,3 +102,24 @@ jobs: | |
# Test without bzlmod | ||
bazelisk build --noenable_bzlmod -- //... | ||
bazelisk test --noenable_bzlmod -- //... | ||
build_and_test_macos_M1: | ||
name: macOS 14 Bazel build <Apple Clang14> | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Mount Bazel cache | ||
uses: actions/[email protected] | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazel-macos-14 | ||
|
||
- name: Build | ||
run: | | ||
bazelisk build //... | ||
bazelisk test //... | ||
# Test without bzlmod | ||
bazelisk build --noenable_bzlmod -- //... | ||
bazelisk test --noenable_bzlmod -- //... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,3 +57,4 @@ docs/_test_images/ | |
|
||
# Ignore Bazel generated files | ||
bazel-* | ||
MODULE.bazel.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters