6 lines
201 B
Bash
Executable File
6 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
rm -rf build-tests
|
|
cmake -S . -B build-tests -DDUSK_BUILD_TESTS=ON -DDUSK_TARGET_SYSTEM=linux
|
|
cmake --build build-tests -- -j$(nproc)
|
|
ctest --output-on-failure --test-dir build-tests |