fix some false positive warnings emitted by msvc #325
Workflow file for this run
This file contains 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: Slow | |
on: | |
pull_request: | |
branches: | |
- master | |
- develop | |
paths-ignore: | |
- 'doc/**' | |
- 'tools/**' | |
- '*.md' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
B2_OPTS: -q -j2 warnings-as-errors=on | |
UBSAN_OPTIONS: print_stacktrace=1 | |
LSAN_OPTIONS: verbosity=1:log_threads=1 | |
ASAN_OPTIONS: detect_leaks=1:detect_stack_use_after_return=1 | |
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} | |
jobs: | |
appleclang: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch Boost superproject | |
run: | | |
cd .. | |
git clone -b $GITHUB_BASE_REF --depth 5 https://github.com/boostorg/boost.git | |
cd boost | |
mv -f $GITHUB_WORKSPACE/* libs/histogram | |
git submodule update --init --depth 5 tools/build tools/boostdep | |
python tools/boostdep/depinst/depinst.py --git_args "--depth 5 --jobs 3" histogram | |
mv -f * $GITHUB_WORKSPACE | |
- name: Prepare b2 | |
run: ./bootstrap.sh | |
- name: Test cxxstd=14 exception-handling=off rtti=off | |
run: | | |
cd libs/histogram | |
../../b2 $B2_OPTS cxxstd=14 exception-handling=off rtti=off test//minimal | |
- name: Test cxxstd=17 | |
run: | | |
cd libs/histogram | |
../../b2 $B2_OPTS cxxstd=17 test//all | |
gcc7: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: egor-tensin/setup-gcc@v1 | |
with: | |
version: 7 | |
- name: Fetch Boost superproject | |
run: | | |
cd .. | |
git clone -b $GITHUB_BASE_REF --depth 5 https://github.com/boostorg/boost.git | |
cd boost | |
mv -f $GITHUB_WORKSPACE/* libs/histogram | |
git submodule update --init --depth 5 tools/build tools/boostdep | |
git submodule update --init --depth 5 libs/format | |
python tools/boostdep/depinst/depinst.py --git_args "--depth 5 --jobs 3" histogram | |
mv -f * $GITHUB_WORKSPACE | |
- name: Prepare b2 | |
run: ./bootstrap.sh | |
- name: Test cxxstd=14 (warnings ignored) | |
run: | | |
cd libs/histogram | |
../../b2 -q -j2 toolset=gcc-7 cxxstd=14 test//all examples | |
gcc10: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch Boost superproject | |
run: | | |
cd .. | |
git clone -b $GITHUB_BASE_REF --depth 5 https://github.com/boostorg/boost.git | |
cd boost | |
mv -f $GITHUB_WORKSPACE/* libs/histogram | |
git submodule update --init --depth 5 tools/build tools/boostdep | |
git submodule update --init --depth 5 libs/format | |
python tools/boostdep/depinst/depinst.py --git_args "--depth 5 --jobs 3" histogram | |
mv -f * $GITHUB_WORKSPACE | |
- name: Prepare b2 | |
run: ./bootstrap.sh | |
- name: Test cxxstd=20 -O3 -funsafe-math-optimizations | |
run: | | |
cd libs/histogram | |
../../b2 $B2_OPTS toolset=gcc-10 cxxstd=20 cxxflags="-O3 -funsafe-math-optimizations" test//all examples | |
clang14: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch Boost superproject | |
run: | | |
cd .. | |
git clone -b $GITHUB_BASE_REF --depth 5 https://github.com/boostorg/boost.git | |
cd boost | |
mv -f $GITHUB_WORKSPACE/* libs/histogram | |
git submodule update --init --depth 5 tools/build tools/boostdep | |
python tools/boostdep/depinst/depinst.py --git_args "--depth 5 --jobs 3" histogram | |
mv -f * $GITHUB_WORKSPACE | |
- name: Prepare b2 | |
run: ./bootstrap.sh | |
- name: Test cxxstd=17 ubsan asan | |
run: | | |
cd libs/histogram | |
../../b2 $B2_OPTS toolset=clang-14 cxxstd=17 variant=histogram_ubasan test//all |