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 fae3eff commit bb22219Copy full SHA for bb22219
.github/workflows/test.yml
@@ -620,8 +620,8 @@ jobs:
620
# We also do not include GCC-11 since it is tested in the JammyCompatibility test.
621
name: 'B: ${{ matrix.name }}'
622
env:
623
- CC: ${{ matrix.CC }}
624
- CXX: ${{ matrix.CXX }}
+ CC: ccache ${{ matrix.CC }}
+ CXX: ccache ${{ matrix.CXX }}
625
steps:
626
627
- uses: actions/checkout@v4
@@ -652,8 +652,8 @@ jobs:
652
runs-on: ubuntu-22.04
653
needs: [BuildVTR]
654
655
- CC: gcc-11
656
- CXX: g++-11
+ CC: ccache gcc-11
+ CXX: ccache g++-11
657
658
659
with:
0 commit comments