Merge branch 'main' into 2027

This commit is contained in:
Peter Johnson
2025-07-08 19:54:03 -07:00
50 changed files with 156 additions and 123 deletions

View File

@@ -5,7 +5,8 @@
"items.find": {
"$or":[
{ "repo": "wpilib-generic-gradlecache" },
{ "repo": "wpilib-generic-cache-cmake" }
{ "repo": "wpilib-generic-cache-cmake" },
{ "repo": "wpilib-generic-cache-bazel" }
],
"$or":[
{

View File

@@ -26,10 +26,11 @@ jobs:
java-version: 17
architecture: x64
- id: Setup_build_buddy
uses: ./.github/actions/setup-build-buddy
- name: Setup Artifactory
uses: ./.github/actions/setup-artifactory-bazel
with:
token: ${{ secrets.BUILDBUDDY_API_KEY }}
username: ${{ secrets.ARTIFACTORY_USERNAME }}
token: ${{ secrets.ARTIFACTORY_PASSWORD }}
- name: bazel ${{ matrix.action }}
run: bazel --output_user_root=C:\\bazelroot ${{ matrix.action }} -k ... --config=ci ${{ matrix.config }} --verbose_failures
@@ -42,10 +43,11 @@ jobs:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- id: Setup_build_buddy
uses: ./.github/actions/setup-build-buddy
- name: Setup Artifactory
uses: ./.github/actions/setup-artifactory-bazel
with:
token: ${{ secrets.BUILDBUDDY_API_KEY }}
username: ${{ secrets.ARTIFACTORY_USERNAME }}
token: ${{ secrets.ARTIFACTORY_PASSWORD }}
- name: bazel test (release)
run: bazel test -k ... --config=ci -c opt --config=macos --nojava_header_compilation --verbose_failures
@@ -64,12 +66,12 @@ jobs:
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- uses: bazelbuild/setup-bazelisk@v3
- id: Setup_build_buddy
uses: ./.github/actions/setup-build-buddy
- name: Setup Artifactory
uses: ./.github/actions/setup-artifactory-bazel
with:
token: ${{ secrets.BUILDBUDDY_API_KEY }}
username: ${{ secrets.ARTIFACTORY_USERNAME }}
token: ${{ secrets.ARTIFACTORY_PASSWORD }}
- name: bazel ${{ matrix.action }} (release)
run: bazel ${{ matrix.action }} ... --config=ci -c opt ${{ matrix.config }} -k --verbose_failures