Files
RedBear-OS/ci.sh
T
Ahmed Abd El Mawgood 9f86748a58 Fix make libs in CI
There is no make libc

➜  relibc git:(master) make libc
make: *** No rule to make target 'libc'.  Stop.
2020-02-14 18:42:38 +00:00

12 lines
115 B
Bash
Executable File

#!/bin/bash
set -ex
./fmt.sh -- --check
if [ -z "$TARGET" ]
then
make all
make test
else
make libs
fi