diff options
Diffstat (limited to '.github/workflows/boost_clang_windows.yml')
-rw-r--r-- | .github/workflows/boost_clang_windows.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/boost_clang_windows.yml b/.github/workflows/boost_clang_windows.yml index d988269..dca79aa 100644 --- a/.github/workflows/boost_clang_windows.yml +++ b/.github/workflows/boost_clang_windows.yml @@ -34,6 +34,12 @@ jobs: - name: Checkout uses: actions/checkout@v2 + - name: Cache Boost + uses: actions/cache@v2 + with: + path: '${{ runner.workspace }}/boost/boost_*.tar.gz' + key: boost-${{ matrix.boost-version }} + - name: Clean up PATH uses: egor-tensin/cleanup-path@v1 if: runner.os == 'Windows' |