Add support for modular build structure. #258
Workflow file for this run
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
| # Copyright (c) 2020 Mohammad Ashar Khan | |
| # Copyright (c) 2021 Cem Bassoy | |
| # Distributed under Boost Software License, Version 1.0 | |
| # (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) | |
| name: "Apple MacOS" | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - 'doc/**' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - 'doc/**' | |
| jobs: | |
| build: | |
| name: "MacOS clang -std=c++${{matrix.cxxstd}}" | |
| runs-on: macos-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| cxxstd: [20,2b] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Git Clone Boost.uBlas | |
| run: | | |
| cd ${GITHUB_WORKSPACE} | |
| cd .. | |
| git clone -b master --depth 1 https://github.com/boostorg/boost.git boost-root | |
| cd boost-root | |
| echo "BOOST_ROOT=${PWD}" >> ${GITHUB_ENV} | |
| echo $BOOST_ROOT | |
| git submodule update --init --depth=1 --jobs 8 tools/build | |
| git submodule update --init --depth=1 --jobs 8 libs/config | |
| git submodule update --init --depth=1 --jobs 8 tools/boostdep | |
| mkdir -p libs/numeric/ | |
| cp -rp ${GITHUB_WORKSPACE}/. libs/numeric/ublas | |
| python tools/boostdep/depinst/depinst.py -g " --depth=1" -I benchmarks numeric/ublas | |
| - name: Bootstrap and Compile Boost.uBlas | |
| run: | | |
| cd $BOOST_ROOT | |
| ./bootstrap.sh | |
| ./b2 -j8 headers | |
| echo "using clang ;" >> ~/user-config.jam; | |
| - name: Test Benchmarks | |
| run: | | |
| cd $BOOST_ROOT | |
| cd libs/numeric/ublas | |
| $BOOST_ROOT/b2 -j8 benchmarks cxxstd=${{matrix.cxxstd}} | |
| - name: Test Tensor Examples | |
| run: | | |
| cd $BOOST_ROOT | |
| cd libs/numeric/ublas | |
| $BOOST_ROOT/b2 -j8 examples/tensor cxxstd=${{matrix.cxxstd}} | |
| - name: Test Tensor | |
| run: | | |
| cd $BOOST_ROOT | |
| cd libs/numeric/ublas | |
| $BOOST_ROOT/b2 -j8 test/tensor cxxstd=${{matrix.cxxstd}} | |