This commit is contained in:
Siarhei Fedartsou 2024-05-24 22:59:22 +02:00
parent 044986885d
commit f368348739
2 changed files with 4 additions and 3 deletions

View File

@ -404,14 +404,14 @@ jobs:
- name: Cache Boost - name: Cache 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'
id: cache-boost id: cache-boost
uses: actions/cache@v2 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: boost-${{ runner.os }}-${{ env.BOOST_VERSION }} key: v1-boost-${{ runner.os }}-${{ runner.arch }}
restore-keys: | restore-keys: |
boost-${{ runner.os }}- v1-boost-${{ runner.os }}-${{ runner.arch }}
- 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'

View File

@ -81,3 +81,4 @@ add_warning(trampolines)
# no_warning(name-of-warning) # no_warning(name-of-warning)
no_warning(deprecated-comma-subscript) no_warning(deprecated-comma-subscript)
no_warning(comma-subscript) no_warning(comma-subscript)
no_warning(ambiguous-reversed-operator)