This commit is contained in:
Siarhei Fedartsou 2024-05-24 23:06:34 +02:00
parent f368348739
commit 945e4d2814

View File

@ -402,16 +402,16 @@ jobs:
if: runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON' if: runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON'
run: sudo chown root /bin/tar && sudo chmod u+s /bin/tar run: sudo chown root /bin/tar && sudo chmod u+s /bin/tar
- name: Cache Boost - name: Cache Boost
if: steps.cache-boost.outputs.cache-hit != 'true' && runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON' if: runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON'
id: cache-boost id: cache-boost
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: | path: |
/usr/local/include/boost /usr/local/include/boost
/usr/local/lib/libboost* /usr/local/lib/libboost*
key: v1-boost-${{ runner.os }}-${{ runner.arch }} key: v1-boost-${{ runner.os }}-${{ runner.arch }}-${{ matrix.run-on }}
restore-keys: | restore-keys: |
v1-boost-${{ runner.os }}-${{ runner.arch }} v1-boost-${{ runner.os }}-${{ runner.arch }}-${{ matrix.run-on }}
- name: Install Boost - name: Install Boost
if: steps.cache-boost.outputs.cache-hit != 'true' && runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON' if: steps.cache-boost.outputs.cache-hit != 'true' && runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON'