diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2019-01-22 11:49:32 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2019-01-22 11:49:32 -0500 |
commit | 557bf355112ed2b0c79f6717e69065c05578c0e4 (patch) | |
tree | 6419fa9775a6fd72f67b3967b97433f4e43cf72f | |
parent | 39ed72b2365de2391a62ad9e82195e864d8d465e (diff) | |
download | efl-557bf355112ed2b0c79f6717e69065c05578c0e4.tar.gz |
ci: update distro checks after version upgrades
Summary:
These two checks still used the, now updated to newer, Debian and Ubuntu
versions. It only showed in the daily cron job build.
Reviewers: bu5hm4n, zmike
Reviewed By: zmike
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D7719
-rwxr-xr-x | .ci/ci-make-check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/ci-make-check.sh b/.ci/ci-make-check.sh index 6dff663e69..8407e5a9bc 100755 --- a/.ci/ci-make-check.sh +++ b/.ci/ci-make-check.sh @@ -21,7 +21,7 @@ if [ "$BUILDSYSTEM" = "ninja" ] ; then if [ "$DISTRO" != "" ] ; then # disable them for this distros, after meson 0.49 is out, this can be removed # https://github.com/mesonbuild/meson/commit/253c581412d7f2b09af353dd83d943454bd555be - if [ "$DISTRO" != "Ubuntu1804" ] && [ "$DISTRO" != "Debian91" ]; then + if [ "$DISTRO" != "Ubuntu1810" ] && [ "$DISTRO" != "Debian96" ]; then for tries in $(seq 1 ${NUM_TRIES}); do (docker exec --env EINA_LOG_BACKTRACE="0" --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) ninja -C build test) && break docker exec --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) cat src/test-suite.log |