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 605e497 commit c60000dCopy full SHA for c60000d
.github/workflows/release-binaries.yml
@@ -536,6 +536,16 @@ jobs:
536
with:
537
previous-artifact: ${{ (needs.prepare.outputs.multi-stage == 'false' && 'build-stage1') || 'build-stage3-all' }}
538
539
+ # Need sccache installed, because some stage1 objects are being built for the tests.
540
+ # FIXME: This probably shouldn't be happening.
541
+ - name: Setup sccache
542
+ uses: hendrikmuhs/ccache-action@ca3acd2731eef11f1572ccb126356c2f9298d35e # v1.2.9
543
+ with:
544
+ # Default to 2G to workaround: https://github.com/hendrikmuhs/ccache-action/issues/174
545
+ max-size: 2G
546
+ key: sccache-${{ runner.os }}-${{ runner.arch }}-release
547
+ variant: sccache
548
+
549
- name: Run Tests
550
shell: bash
551
run: |
0 commit comments