summaryrefslogtreecommitdiff
path: root/.github/scripts/posix_build_checker.sh
diff options
context:
space:
mode:
Diffstat (limited to '.github/scripts/posix_build_checker.sh')
-rw-r--r--.github/scripts/posix_build_checker.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/.github/scripts/posix_build_checker.sh b/.github/scripts/posix_build_checker.sh
deleted file mode 100644
index f23070a5d..000000000
--- a/.github/scripts/posix_build_checker.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-PROJECT=$1
-echo "Verifying url links of: ${PROJECT}"
-if [ ! -d "$PROJECT" ]
-then
- echo "Directory passed does not exist"
- exit 2
-fi
-
-SCRIPT_RET=0
-
-set -o nounset # Treat unset variables as an error
-
-cd ${PROJECT}/FreeRTOS/Demo/Posix_GCC
-make
-
-SCRIPT_RET=$?
-
-if [ "${SCRIPT_RET}" -eq 0 ]
-then
- exit 0
-else
- exit 1
-fi
-