Run unit tests #4
This file contains 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: Run unit tests on aarch64 | |
on: | |
workflow_dispatch: | |
inputs: | |
connect-type: | |
required: true | |
type: string | |
default: "FULLSPEC" | |
debug: | |
required: true | |
type: boolean | |
description: Debug build | |
default: true | |
branch: | |
required: true | |
type: string | |
description: Branch to build | |
jobs: | |
unit_tests: | |
runs-on: [self-hosted] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build unit tests | |
run: make -C cpp -j $(nproc) test CXX=clang++ | |
- name: Run unit tests | |
run: cpp/bin/s2p_test |