Privateer segment storage backend #81
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI Test | |
| on: [push, pull_request] | |
| jobs: | |
| bst1-87-0: | |
| runs-on: ubuntu-latest | |
| env: | |
| METALL_LIMIT_MAKE_PARALLELS: 8 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Test | |
| run: | | |
| pushd /dev/shm | |
| wget -q https://github.com/boostorg/boost/releases/download/boost-1.87.0/boost-1.87.0-cmake.tar.gz | |
| export BOOST_TAR="${PWD}/boost-1.87.0-cmake.tar.gz" | |
| popd | |
| export METALL_TEST_DIR=${GITHUB_JOB} | |
| export CC=gcc-12 | |
| export CXX=g++-12 | |
| export METALL_CMAKE_ADDITIONAL_OPTIONS="-DBOOST_FETCH_URL=${BOOST_TAR}" | |
| cd $GITHUB_WORKSPACE | |
| bash ./scripts/CI/run_ci_build_and_test.sh | |
| bst1-80-0: | |
| runs-on: ubuntu-latest | |
| env: | |
| METALL_LIMIT_MAKE_PARALLELS: 8 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Test | |
| run: | | |
| pushd /dev/shm | |
| wget -q https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz | |
| mkdir boost | |
| tar xf boost_1_80_0.tar.gz -C boost --strip-components 1 | |
| export METALL_CMAKE_ADDITIONAL_OPTIONS="-DBOOST_INCLUDE_ROOT=${PWD}/boost" | |
| popd | |
| export METALL_TEST_DIR=${GITHUB_JOB} | |
| export CC=gcc-12 | |
| export CXX=g++-12 | |
| cd $GITHUB_WORKSPACE | |
| bash ./scripts/CI/run_ci_build_and_test.sh |