[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

@@ -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