mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-03 05:01:28 +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
|