diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-28 15:43:07 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-28 15:43:07 +0300 |
commit | 6518228157c0c7cd45d22aa5916eed887de2d6f6 (patch) | |
tree | d39c9e617ad0da3a07676f1006237d360af3542f /.github/workflows | |
parent | update cmake-common (diff) | |
download | math-server-6518228157c0c7cd45d22aa5916eed887de2d6f6.tar.gz math-server-6518228157c0c7cd45d22aa5916eed887de2d6f6.zip |
workflows/ci: cache Boost
Diffstat (limited to '.github/workflows')
-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 ad3b89b..04db3e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,11 @@ jobs: uses: actions/setup-python@v2 with: python-version: '3.x' + - name: Cache Boost + uses: actions/cache@v2 + with: + path: '${{ runner.workspace }}/build/boost_*.tar.gz' + key: 'boost_${{ env.BOOST_VERSION }}' - name: Build Boost run: make deps - name: Build |