diff --git a/Tests/ci-tests.bash b/Tests/ci-tests.bash index aff8a38a3a5edf6b6ed73ae0b7ac0d3d76efc14d..ef12d327f74903e7598166e44cea9f788cf750d4 100644 --- a/Tests/ci-tests.bash +++ b/Tests/ci-tests.bash @@ -3,4 +3,9 @@ set -e trap 'mv -v /opt/clean/etc/IDEEnvs{.bak,}' EXIT cp -v /opt/clean/etc/IDEEnvs{,.bak} sed -i "s|{Application}/lib/iTasks|$(pwd)/Libraries|g" /opt/clean/etc/IDEEnvs + +#Try to compile everything find . -name "*.prj" | xargs dirname | sort -u | xargs -I{} sh -c "cd {}; cpm make" + +#Run the tests +( cd Tools; ./RunUnitTestsForCi; )