Bugfix: task tracer #661
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
| name: Build and Test on Linux | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| branches: [ master ] | |
| paths-ignore: | |
| - '**.md' | |
| env: | |
| proc_num: $(nproc) | |
| # https://github.com/actions/runner-images | |
| jobs: | |
| compile-with-make: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ./.github/actions/install-all-dependencies | |
| - name: gcc with all options | |
| uses: ./.github/actions/compile-with-make | |
| with: | |
| options: --headers=/usr/include --libs=/usr/lib /usr/lib64 --cc=gcc --cxx=g++ --werror --with-thrift --with-glog --with-rdma --with-debug-bthread-sche-safety --with-debug-lock --with-bthread-tracer --with-asan | |
| - name: clang with all options | |
| uses: ./.github/actions/compile-with-make | |
| with: | |
| options: --headers=/usr/include --libs=/usr/lib /usr/lib64 --cc=clang --cxx=clang++ --werror --with-thrift --with-glog --with-rdma --with-debug-bthread-sche-safety --with-debug-lock --with-bthread-tracer --with-asan | |
| compile-with-cmake: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ./.github/actions/install-all-dependencies | |
| - name: gcc with all options | |
| run: | | |
| export CC=gcc && export CXX=g++ | |
| mkdir gcc_build_all && cd gcc_build_all | |
| cmake -DWITH_MESALINK=OFF -DWITH_GLOG=ON -DWITH_THRIFT=ON -DWITH_RDMA=ON -DWITH_DEBUG_BTHREAD_SCHE_SAFETY=ON -DWITH_DEBUG_LOCK=ON -DWITH_BTHREAD_TRACER=ON -DWITH_ASAN=ON -DCMAKE_POLICY_VERSION_MINIMUM=3.5 .. | |
| make -j ${{env.proc_num}} && make clean | |
| - name: clang with all options | |
| run: | | |
| export CC=clang && export CXX=clang++ | |
| mkdir clang_build_all && cd clang_build_all | |
| cmake -DWITH_MESALINK=OFF -DWITH_GLOG=ON -DWITH_THRIFT=ON -DWITH_RDMA=ON -DWITH_DEBUG_BTHREAD_SCHE_SAFETY=ON -DWITH_DEBUG_LOCK=ON -DWITH_BTHREAD_TRACER=ON -DWITH_ASAN=ON -DCMAKE_POLICY_VERSION_MINIMUM=3.5 .. | |
| make -j ${{env.proc_num}} && make clean | |
| clang-unittest: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ./.github/actions/install-essential-dependencies | |
| - uses: ./.github/actions/init-ut-make-config | |
| with: | |
| options: --with-bthread-tracer | |
| - name: compile tests | |
| run: | | |
| cat config.mk | |
| cd test | |
| make -j ${{env.proc_num}} | |
| - name: run tests | |
| run: | | |
| cd test | |
| sh ./run_tests.sh |