Fixed also for nonblocking backend #2067
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: release-smoke-tests | |
| on: [push] | |
| env: | |
| BUILD_TYPE: Release | |
| 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 | |
| - 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 | |