branch: elpa/ws-butler
commit 0f8c2fe78839da6a2428cc17a3113eb2631c8dbc
Author: gururajrkatti <[email protected]>
Commit: Gururaj R Katti <[email protected]>
Add support to ppc64le. Install emacs
---
.travis.yml | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index d7215bf113..e8bf9c7bca 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,24 @@
language: emacs-lisp
+arch:
+ - amd64
+ - ppc64le
+jobs:
+ exclude:
+ - arch: ppc64le
+ env: EMACS=emacs-snapshot
before_install:
- git submodule update --init
+ - if [ "$TRAVIS_CPU_ARCH" = 'ppc64le' ]; then
+ sudo apt-get update &&
+ sudo apt-get install -y emacs;
+ fi
- if [ "$EMACS" = 'emacs-snapshot' ]; then
sudo add-apt-repository -y ppa:cassou/emacs &&
sudo apt-get update --allow-unauthenticated -qq &&
sudo apt-get install -qq
emacs-snapshot-el emacs-snapshot-gtk emacs-snapshot;
fi
+
env:
- EMACS=emacs
- EMACS=emacs-snapshot