ci: remove not in use script
authorStefan Schmidt <s.schmidt@samsung.com>
Wed, 3 Jun 2020 08:28:12 +0000 (10:28 +0200)
committerJongmin Lee <jm105.lee@samsung.com>
Wed, 3 Jun 2020 21:18:33 +0000 (06:18 +0900)
We are not buildign the external examples. This script is no longer
used. We have an tiny internal app build test and building the in-tree
examples as well.

Signed-off-by: Stefan Schmidt <s.schmidt@samsung.com>
Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D11920

.ci/build-efl-app.sh [deleted file]

diff --git a/.ci/build-efl-app.sh b/.ci/build-efl-app.sh
deleted file mode 100755 (executable)
index c8a0e6a..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-set -e
-
-#clone our examples from efl
-git clone --depth=1 -b master http://git.enlightenment.org/tools/examples.git/
-
-cd examples/apps/c/life/
-
-#build the example
-mkdir build
-meson . ./build
-ninja -C build all
-
-#remove the folder again so its not left in the artifacts
-cd ../../../..
-rm -rf examples