mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-22 15:30:59 +02:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
language: generic
|
|
sudo: false
|
|
env:
|
|
- TEST_ZSH=5.3.1
|
|
- TEST_ZSH=5.2
|
|
- TEST_ZSH=5.1.1
|
|
- TEST_ZSH=5.0.8
|
|
- TEST_ZSH=4.3.17
|
|
- TEST_ZSH=4.3.17-travis
|
|
|
|
install:
|
|
- |
|
|
if [ "$TEST_ZSH" = 4.3.17-travis ]; then
|
|
sudo apt-get install zsh
|
|
if [ "$(zsh --version)" != "zsh 4.3.17 (x86_64-unknown-linux-gnu)" ]; then
|
|
echo "Unexpected Zsh version: $(zsh --version)"
|
|
exit 1
|
|
fi
|
|
else
|
|
if [ "$TEST_ZSH" = 4.3.17 ]; then
|
|
curl -SL https://sourceforge.net/projects/zsh/files/zsh-dev/$TEST_ZSH/zsh-$TEST_ZSH.tar.bz2 | tar --bzip2 -xf -
|
|
elif [ "$TEST_ZSH" = 5.0.8 ]; then
|
|
curl -SL https://downloads.sourceforge.net/project/zsh/zsh/$TEST_ZSH/zsh-$TEST_ZSH.tar.bz2 | tar --bzip2 -xf -
|
|
else
|
|
curl -SL https://downloads.sourceforge.net/project/zsh/zsh/$TEST_ZSH/zsh-$TEST_ZSH.tar.xz | tar --xz -xf -
|
|
fi
|
|
(cd zsh-$TEST_ZSH
|
|
./configure && sudo make && sudo make install)
|
|
fi
|
|
- pip install --user cram
|
|
- cram --version
|
|
- export SHELL=zsh
|
|
script:
|
|
- zsh --version
|
|
- which zsh
|
|
- python -c 'from cram import _main; print(_main._which("zsh"))'
|
|
- make test_full
|