You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
255 B
11 lines
255 B
#!/bin/bash
|
|
|
|
# Check if a Ceedling project exists
|
|
if [ -f "project.yml" ]; then
|
|
echo "Building and testing C project with Ceedling..."
|
|
ceedling test:all
|
|
exit $?
|
|
else
|
|
echo "No Ceedling project found in the current directory."
|
|
exit 1
|
|
fi
|