summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2020-06-03 10:28:12 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-06-03 15:21:30 +0200
commit082f52c10c3e58f49a34a754a6410877633d72b8 (patch)
tree5226362b115d631d8b3f2994e9a3f318c458d351 /.ci
parent338a529af190f0c9c285e932a765f39ae4047a03 (diff)
downloadefl-082f52c10c3e58f49a34a754a6410877633d72b8.tar.gz
ci: remove not in use script
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
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/build-efl-app.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/.ci/build-efl-app.sh b/.ci/build-efl-app.sh
deleted file mode 100755
index c8a0e6aa0b..0000000000
--- a/.ci/build-efl-app.sh
+++ /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