[ci] Revert Bazel artifactory caching (#8080)

* Revert "[bazel] Set remote cache header to prevent redirects (#8065)"

This reverts commit 082de35ad7.

* Revert "[ci] Add Bazel caching (#8006)"

This reverts commit c3b327d57b.
This commit is contained in:
sciencewhiz
2025-07-13 19:56:00 -07:00
committed by GitHub
parent 69ecd02aec
commit 8d7bed791c
5 changed files with 52 additions and 65 deletions

View File

@@ -1,30 +0,0 @@
name: "Setup Artifactory Bazel caching"
description: "Sets up the Artifactory Bazel cache to be readonly / writing based on the presence of environment variables"
inputs:
username:
description: "Artifactory API username"
token:
description: "Artifactory API token"
runs:
using: "composite"
steps:
- name: Setup without key
env:
API_KEY: ${{ inputs.token }}
if: ${{ env.API_KEY == '' }}
shell: bash
run: |
echo "No API key secret detected, will setup readonly cache"
echo "build:ci --config=artifactory_readonly" > bazel_auth.rc
- name: Set with key
env:
API_KEY: ${{ inputs.token }}
if: ${{ env.API_KEY != '' }}
shell: bash
run: |
echo "API Key detected!"
# X-JFrog-Download-Redirect-To is a workaround for https://github.com/bazelbuild/bazel/issues/17700
echo "build:base_remote --remote_cache=https://${{ inputs.username }}:${{ inputs.token }}@frcmaven.wpi.edu/artifactory/wpilib-generic-cache-bazel-local --remote_cache_header=X-JFrog-Download-Redirect-To=None" > bazel_auth.rc

View File

@@ -0,0 +1,27 @@
name: 'Setup BuildBuddy acache'
description: 'Sets up the build buddy cache to be readonly / writing based on the presence of environment variables'
inputs:
token:
description: 'Build Buddy API token'
runs:
using: "composite"
steps:
- name: Setup without key
env:
API_KEY: ${{ inputs.token }}
if: ${{ env.API_KEY == '' }}
shell: bash
run: |
echo "No API key secret detected, will setup readonly cache"
echo "build:ci --config=build_buddy_readonly" > bazel_auth.rc
- name: Set with key
env:
API_KEY: ${{ inputs.token }}
if: ${{ env.API_KEY != '' }}
shell: bash
run: |
echo "API Key detected!"
echo "build:build_buddy --remote_header=x-buildbuddy-api-key=${{ env.API_KEY }}" > bazel_auth.rc

View File

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

View File

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