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

set -e

if [ "$1" = "codecov" ] || [ "$1" = "coverity" ] || [ "$1" = "mingw" ] || [ "$1" = "release-ready" ]; then
  exit 0
fi

travis_fold start "app-compile-test"
travis_time_start "app-compile-test"
if [ "$DISTRO" != "" ] ; then
  docker exec --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) .ci/build-example.sh
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
  exit 0
  #FIXME: we don't install efl_ui.pc on osx?
  export PATH="$(brew --prefix gettext)/bin:$PATH"
  .ci/build-example.sh
fi
travis_time_finish "app-compile-test"
travis_fold end "app-compile-test"