diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2016-02-09 02:53:40 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2016-02-12 03:18:35 +0300 |
commit | ded4653bf268c06757352be0fb1dfafb462ae506 (patch) | |
tree | 60bcd302183f77c7e7ceb02f29f88f900fccb0f0 /.travis.yml | |
parent | 42c39c8922b0fb03c0bcc6c2101165412ed50e4c (diff) |
Install ZSH on Travis-CI
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 818940cc..e2191a7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,22 @@ -language: php -sudo: false +sudo: true +language: sh +addons: + apt: + packages: + - build-essential -php: - - '7.0' +before_script: + # Show the git version being used to test. + - "git --version" + # Show the zsh version being used to test. + - "zsh --version" + +install: + - "sudo apt-add-repository -y ppa:brainpower/testing" + - "sudo apt-get update -qq" + - "sudo apt-get install zsh" + - "sudo chsh -s $(which zsh)" script: - - test/powerlevel9k.spec + - test/powerlevel9k.spec |