Skip to content

Run unit tests

Run unit tests #4

Workflow file for this run

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