Add apt get update and -y

This commit is contained in:
Ugljesa Jovanovic 2020-06-10 19:48:14 +02:00 committed by Ugljesa Jovanovic
parent d98143bde7
commit efc81b2d9d
No known key found for this signature in database
GPG Key ID: 178E6DFCECCB0E0F

View File

@ -11,7 +11,9 @@ matrix:
KBUILD=linux
JAVA_OPTS=-Xmx2g
#skip ./gradlew assemble that is normally invoked in installation step
install: sudo apt-get install automake
install:
- sudo apt-get update
- sudo apt-get -y install automake
script:
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then bash ./linuxBuild.sh; fi'
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash ./linuxBuildAndPublish.sh; fi'