diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-04 10:14:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-04 10:14:55 +0300 |
commit | 79cade8e228ae4ecf8f860de2cbbc7351567ea33 (patch) | |
tree | e12cd05a53bad41f857fd9929fd47a033e148613 /.github/workflows/ci.yml | |
parent | update cmake-common (diff) | |
download | winapi-debug-79cade8e228ae4ecf8f860de2cbbc7351567ea33.tar.gz winapi-debug-79cade8e228ae4ecf8f860de2cbbc7351567ea33.zip |
workflows/ci: cache Boost archive
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e37a096..be60820 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,11 @@ jobs: uses: actions/checkout@v2 with: submodules: recursive + - name: Cache Boost + uses: actions/cache@v2 + with: + path: '${{ runner.workspace }}/build/boost_*.tar.gz' + key: 'boost_${{ env.BOOST_VERSION }}' - name: Set up Python uses: actions/setup-python@v2 with: |