Skip to content

The new unit test found valid issues with the BSP1D implementation of… #1040

The new unit test found valid issues with the BSP1D implementation of…

The new unit test found valid issues with the BSP1D implementation of… #1040

Workflow file for this run

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