Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/depot_tools/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
run: echo "$GITHUB_WORKSPACE/depot_tools" >> $GITHUB_PATH
shell: bash
- name: Generate gclient file
run: gclient config --name=src --custom-var=download_remoteexec_cfg=True --custom-var='rbe_instance="projects/cobalt-actions-prod/instances/default_instance"' https://github.com/${{ github.repository }}
run: gclient config --name=src --custom-var=download_remoteexec_cfg=True --custom-var='rbe_instance="projects/cobalt-actions-prod/instances/default_instance"' --cache-dir=/gclient-sync-cache/git https://github.com/${{ github.repository }}
shell: bash
- name: Set target OS for Android
if: ${{ contains(matrix.platform, 'android') }}
Expand All @@ -29,7 +29,7 @@ runs:
shell: bash
- name: gclient sync
if: inputs.run_sync == 'true'
run: gclient sync -v --shallow --no-history -r ${{ github.sha }}
run: gclient sync -v --shallow --no-history --lock_timeout=700 --jobs=1 -r ${{ github.sha }} && ls -l /gclient-sync-cache/git
shell: bash
- name: Disable Chromium client side build telemetry
run: build_telemetry opt-out
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linearize_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all

jobs:
trigger_linearize:
runs-on: [self-hosted, chrobalt-linux-runner]
runs-on: [self-hosted, chrobalt-linux-runner-with-cache]
permissions:
contents: write
steps:
Expand Down
Loading