-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
bazelcommits
committed
Sep 20, 2023
1 parent
d6e565b
commit d4cfcb0
Showing
1 changed file
with
20 additions
and
2 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,2 +1,20 @@ | ||
# bazel-profile | ||
Bazel profiles for GitHub actions | ||
## bazel-profile | ||
|
||
Bazel profiles for GitHub actions. It's An easy way to upload profiles to | ||
github from Bazel and visualize performance. | ||
|
||
|
||
## Setup | ||
|
||
Just add the bazel-profile-action to your workflows which run Bazel | ||
|
||
``` | ||
my_bazel_test_job: | ||
name: My Bazel github actions job | ||
runs-on: macos-12 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: bazelcat/bazel-profile-action@v1 | ||
- run: bazel build ... | ||
shell: bash | ||
``` |