ci: Use Local Execution, Remote Caching (LERC) for fork PRS (#48319)

cleanup
This commit is contained in:
John Kleinschmidt
2025-09-15 16:31:49 -04:00
committed by GitHub
parent a468ed7f10
commit 49eb165ef9

View File

@@ -44,6 +44,14 @@ runs:
- name: Add Clang problem matcher
shell: bash
run: echo "::add-matcher::src/electron/.github/problem-matchers/clang.json"
- name: Setup Siso for fork pull requests
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
shell: bash
run: |
# Use Local Execution, Remote Caching (LERC). Checks the remote cache for action
# matches and uses existing results if a match is found. If not, execution of the
# action is performed locally.
echo "RBE_exec_strategy=local" >> $GITHUB_ENV
- name: Build Electron ${{ inputs.step-suffix }}
shell: bash
run: |