Skip to content

Commit 3288c96

Browse files
Also test dist files on macOS
1 parent ac98ae5 commit 3288c96

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

β€Ž.travis.ymlβ€Ž

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,38 @@ matrix:
5858
script:
5959
- ./test-scripts/fish
6060

61+
# test all echo functions on difference shell(except sh, which is actually bash) on Mac
62+
- os: osx
63+
env:
64+
- task=test-dist-zsh
65+
before_script:
66+
- brew install zsh
67+
script:
68+
- ./test-scripts/zsh
69+
- os: osx
70+
env:
71+
- task=test-dist-ksh
72+
before_script:
73+
- brew install ksh
74+
script:
75+
- ./test-scripts/ksh
76+
- os: osx
77+
env:
78+
- task=test-dist-bash-builtin
79+
script:
80+
- ./test-scripts/bash
81+
- os: osx
82+
env:
83+
- task=test-dist-bash-brew-install
84+
- PATH="/usr/local/bin/:$PATH"
85+
before_script:
86+
- brew install bash
87+
script:
88+
- ./test-scripts/bash
89+
- os: osx
90+
env:
91+
- task=test-dist-fish
92+
before_script:
93+
- brew install fish
94+
script:
95+
- ./test-scripts/fish

0 commit comments

Comments
Β (0)