We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 159a782 commit 333f1d6Copy full SHA for 333f1d6
.github/workflows/tests.yml
@@ -17,8 +17,10 @@ jobs:
17
runs-on: macos-14
18
steps:
19
- uses: actions/checkout@v3
20
- - name: Select Xcode
+ - name: Set Up CI
21
run: .github/workflows/xcode_select.sh
22
+ env:
23
+ BUILDBUDDY_API_KEY: ${{ secrets.BUILDBUDDY_API_KEY }}
24
- name: Lint
25
run: bazelisk run :lint && git diff --exit-code
26
- name: Build and Test
.github/workflows/xcode_select.sh
@@ -12,3 +12,4 @@ echo "Generating bazelrc"
12
# Enable remote cache for all Github Action builds
13
echo "build --config=remote_cache" > user.bazelrc
14
echo "build --config=ci" >> user.bazelrc
15
+echo "build --remote_header=x-buildbuddy-api-key=$BUILDBUDDY_API_KEY" >> user.bazelrc
0 commit comments