The new unit test found valid issues with the BSP1D implementation of… #1040
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: debug-smoke-tests | |
| on: [push] | |
| env: | |
| BUILD_TYPE: Debug | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install required packages | |
| run: sudo apt-get install -y libnuma-dev | |
| - name: Configure | |
| run: mkdir build && cd build && ../bootstrap.sh --prefix=../install --debug-build | |
| - name: Build | |
| working-directory: ${{github.workspace}}/build | |
| run: make -j4 | |
| - name: Install | |
| working-directory: ${{github.workspace}}/build | |
| run: make -j4 install | |
| - name: Test | |
| working-directory: ${{github.workspace}}/build | |
| run: make -j4 smoketests &> smoketests.log | |
| - name: Check | |
| working-directory: ${{github.workspace}}/build | |
| run: ../tests/summarise.sh smoketests.log | |
| - name: DumpLogOnFailure | |
| if: failure() | |
| working-directory: ${{github.workspace}}/build | |
| run: cat smoketests.log | |