diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-13 19:11:26 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-13 20:32:45 +0300 |
commit | c300d8fcc7cbd386557e9dd2026db5011b52256d (patch) | |
tree | 3f633ba53a9be2d8a9a6779accc1ab68ea686631 /.github/workflows/boost_toolsets.yml | |
parent | project.ci: use pre-built Boost when available (diff) | |
download | cmake-common-c300d8fcc7cbd386557e9dd2026db5011b52256d.tar.gz cmake-common-c300d8fcc7cbd386557e9dd2026db5011b52256d.zip |
workflows: cache Boost downloads
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/boost_toolsets.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/boost_toolsets.yml b/.github/workflows/boost_toolsets.yml index 1319264..165bc47 100644 --- a/.github/workflows/boost_toolsets.yml +++ b/.github/workflows/boost_toolsets.yml @@ -110,6 +110,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' |