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 8367133 commit e241f10Copy full SHA for e241f10
.github/workflows/build.yml
@@ -54,6 +54,15 @@ jobs:
54
with:
55
python-version: '3.x'
56
57
+ - name: Cache WebRTC build output
58
+ uses: actions/cache@v4
59
+ with:
60
+ path: src/.output
61
+ key: ${{ runner.os }}-webrtc-output-${{ inputs.webrtc_branch }}-${{ hashFiles('src/.gclient', 'src/DEPS') }}
62
+ restore-keys: |
63
+ ${{ runner.os }}-webrtc-output-${{ inputs.webrtc_branch }}-
64
+ ${{ runner.os }}-webrtc-output-
65
+
66
- name: Ensure gclient is available
67
run: |
68
if ! command -v gclient &> /dev/null; then
0 commit comments