Merge pull request #3254 from fwesselm/letsFixSomeTypos2 #5580
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] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| gcc: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| config: [Debug, RelWithDebInfo] | |
| sanitizer: [Address, Thread, Leak] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{github.workspace}}/build | |
| - name: Configure CMake and Build | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DDEBUG_MEMORY=${{ matrix.sanitizer }} -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ | |
| cmake --build . -j2 | |
| - name: Run | |
| working-directory: ${{github.workspace}}/build | |
| shell: bash | |
| run: ./bin/highs $GITHUB_WORKSPACE/check/instances/afiro.mps | |
| clang: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # os: [ubuntu-latest, macos-latest] | |
| os: [ubuntu-latest] | |
| config: [Debug, RelWithDebInfo] | |
| sanitizer: [Address, Thread, Leak] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{github.workspace}}/build | |
| - name: Configure CMake and Build | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DDEBUG_MEMORY=${{ matrix.sanitizer }} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ | |
| cmake --build . -j2 | |
| - name: Run | |
| working-directory: ${{github.workspace}}/build | |
| shell: bash | |
| run: ./bin/highs $GITHUB_WORKSPACE/check/instances/afiro.mps | |
| no_hipo_macos: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-latest] | |
| config: [Debug, RelWithDebInfo] | |
| sanitizer: [Address, Thread] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{github.workspace}}/build | |
| - name: Configure CMake and Build | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DDEBUG_MEMORY=${{ matrix.sanitizer }} | |
| cmake --build . -j3 | |
| - name: Run | |
| working-directory: ${{github.workspace}}/build | |
| shell: bash | |
| run: ./bin/highs $GITHUB_WORKSPACE/check/instances/afiro.mps | |
| hipo: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| config: [Debug, RelWithDebInfo] | |
| all_tests: [ON] | |
| sanitizer: [Address, Thread, Leak] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{github.workspace}}/build | |
| - name: Configure CMake | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DHIPO=ON -DBUILD_OPENBLAS=ON \ | |
| -DALL_TESTS=${{ matrix.all_tests }} \ | |
| -DCMAKE_BUILD_TYPE=${{ matrix.config }} \ | |
| -DDEBUG_MEMORY=${{ matrix.sanitizer }} \ | |
| -DNO_AVX512=ON \ | |
| -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF \ | |
| -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ | |
| - name: Build | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake --build . -j2 | |
| - name: Test executable | |
| working-directory: ${{github.workspace}}/build | |
| run: ./bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps | |
| - name: Test hipo | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| ./bin/unit_tests [highs_hipo] | |
| hipo_macos: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-latest] | |
| config: [Debug, RelWithDebInfo] | |
| sanitizer: [Address, Thread] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{github.workspace}}/build | |
| - name: Configure CMake | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake $GITHUB_WORKSPACE -DHIPO=ON \ | |
| -DCMAKE_BUILD_TYPE=${{ matrix.config }} \ | |
| -DDEBUG_MEMORY=${{ matrix.sanitizer }} \ | |
| -DALL_TESTS=ON | |
| - name: Build | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| cmake --build . -j3 | |
| - name: Test executable | |
| working-directory: ${{github.workspace}}/build | |
| run: ./bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps | |
| - name: Test hipo | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| ./bin/unit_tests [highs_hipo] |