summaryrefslogtreecommitdiff
path: root/.ci/build-efl-app.sh
blob: ac22e09db508aa385c0d1684f590fe5edc4ed7eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e

cd /

#clone our examples from efl
git clone 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