summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2018-07-12 09:17:35 -0400
committerMike Blumenkrantz <zmike@samsung.com>2018-07-12 09:17:36 -0400
commitd279918174947793b8f3d6880804eb60648c779f (patch)
tree7285ec9e46af6707ae89083180c67e0d1fc7edff /.travis.yml
parentf21fd7e2fd396bf62af22655f92e4c38ef62b0e7 (diff)
downloadefl-d279918174947793b8f3d6880804eb60648c779f.tar.gz
ci: set number of make jobs globally and decrease to 5 jobs
Summary: travis docs explicitly state that the expectation for builds is to have 2 cpus, meaning that 10 jobs is wayyyy too many and was actually causing some build failures due to strain on the virtual hw this sets the number of jobs using a global variable to avoid having to set it separately for each build https://docs.travis-ci.com/user/reference/overview/#Virtualization-environments Reviewers: devilhorns, ManMower Reviewed By: ManMower Subscribers: ManMower, cedric, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D6558
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml19
1 files changed, 11 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index dfe16b8292..60a3658b8b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,14 +8,17 @@ os:
- osx
env:
- -
- - DISTRO=Ubuntu1804
- - DISTRO=Fedora28 CI_BUILD_TYPE=wayland
- - DISTRO=Fedora28 CI_BUILD_TYPE=misc
- - DISTRO=Fedora28 CI_BUILD_TYPE=misc-disabled
- - DISTRO=Fedora28 CI_BUILD_TYPE=release-ready
- - DISTRO=Debian91
- - DISTRO=Archlinux
+ global:
+ - MAKEFLAGS="-j5"
+ matrix:
+ -
+ - DISTRO=Ubuntu1804
+ - DISTRO=Fedora28 CI_BUILD_TYPE=wayland
+ - DISTRO=Fedora28 CI_BUILD_TYPE=misc
+ - DISTRO=Fedora28 CI_BUILD_TYPE=misc-disabled
+ - DISTRO=Fedora28 CI_BUILD_TYPE=release-ready
+ - DISTRO=Debian91
+ - DISTRO=Archlinux
services:
- docker