mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-17 02:00:07 +00:00
Install ZSH on Travis-CI
This commit is contained in:
parent
42c39c8922
commit
ded4653bf2
1 changed files with 18 additions and 5 deletions
21
.travis.yml
21
.travis.yml
|
@ -1,8 +1,21 @@
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue