Added checks to identify cause of segfault exposed in #2748 #3032
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: sanitizers-cmake | |
| on: [push, pull_request] | |
| jobs: | |
| gcc_relwithdebinfo: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| sanitizer: [Address, Thread, Leak] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{runner.workspace}}/build | |
| - name: Configure CMake and Build | |
| shell: bash | |
| working-directory: ${{runner.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=RelWithDebInfo -DDEBUG_MEMORY=${{ matrix.sanitizer }} -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ | |
| cmake --build . --parallel | |
| - name: Run | |
| working-directory: ${{runner.workspace}}/build | |
| shell: bash | |
| run: ./bin/highs $GITHUB_WORKSPACE/check/instances/afiro.mps | |
| gcc_debug: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # os: [ubuntu-latest, macos-latest] | |
| os: [ubuntu-latest] | |
| sanitizer: [Address, Thread, Leak] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{runner.workspace}}/build | |
| - name: Configure CMake and Build | |
| shell: bash | |
| working-directory: ${{runner.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -DDEBUG_MEMORY=${{ matrix.sanitizer }} -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ | |
| cmake --build . --parallel | |
| - name: Run | |
| working-directory: ${{runner.workspace}}/build | |
| shell: bash | |
| run: ./bin/highs $GITHUB_WORKSPACE/check/instances/afiro.mps | |
| clang_relwithdebinfo: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # os: [ubuntu-latest, macos-latest] | |
| os: [ubuntu-latest] | |
| sanitizer: [Address, Thread, Leak] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{runner.workspace}}/build | |
| - name: Configure CMake and Build | |
| shell: bash | |
| working-directory: ${{runner.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=RelWithDebInfo -DDEBUG_MEMORY=${{ matrix.sanitizer }} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ | |
| cmake --build . --parallel | |
| - name: Run | |
| working-directory: ${{runner.workspace}}/build | |
| shell: bash | |
| run: ./bin/highs $GITHUB_WORKSPACE/check/instances/afiro.mps | |
| clang_debug: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # os: [ubuntu-latest, macos-latest] | |
| os: [ubuntu-latest] | |
| sanitizer: [Address, Thread, Leak] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{runner.workspace}}/build | |
| - name: Configure CMake and Build | |
| shell: bash | |
| working-directory: ${{runner.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -DDEBUG_MEMORY=${{ matrix.sanitizer }} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ | |
| cmake --build . --parallel | |
| - name: Run | |
| working-directory: ${{runner.workspace}}/build | |
| shell: bash | |
| run: ./bin/highs $GITHUB_WORKSPACE/check/instances/afiro.mps |