You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
sudo: true
|
|
|
|
dist: trusty
|
|
|
|
language: sh
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- build-essential
|
|
|
|
|
|
|
|
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-get update -qq"
|
|
|
|
- "sudo apt-get install zsh"
|
|
|
|
- "sudo chsh -s $(which zsh)"
|
|
|
|
|
|
|
|
script:
|
|
|
|
- test/powerlevel9k.spec
|
|
|
|
- test/functions/utilities.spec
|
|
|
|
- test/functions/colors.spec
|
|
|
|
- test/segments/dir.spec
|
|
|
|
- test/segments/rust_version.spec
|
|
|
|
- test/segments/go_version.spec
|
|
|
|
- test/segments/vcs.spec
|
|
|
|
|