mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-04 05:31:27 +00:00
12 lines
100 B
Bash
Executable File
12 lines
100 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if ! [ -d build ] ; then
|
|
./setup.sh
|
|
fi
|
|
|
|
cmake --build build
|
|
|
|
pytest mscclpp
|