mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 04:24:23 +00:00
.travis.yml: fix YAML parse error
`[` is a meta character in YAML. `- [` starts an array, so it should end with `]`; but it was not. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
58d744461c
commit
2be1cf45c1
@ -356,7 +356,9 @@ before_script:
|
||||
- chmod u-w ..
|
||||
- $SETARCH make -s $JOBS && make install
|
||||
- ccache --show-stats
|
||||
- [ -z "${GEMS_FOR_TEST}" ] || $RUBY_PREFIX/bin/gem install --no-document $GEMS_FOR_TEST
|
||||
- |-
|
||||
[ -z "${GEMS_FOR_TEST}" ] ||
|
||||
$RUBY_PREFIX/bin/gem install --no-document $GEMS_FOR_TEST
|
||||
|
||||
script:
|
||||
- $SETARCH make -s test TESTOPTS="${TESTOPTS=$JOBS -q --tty=no}"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user