From d98143bde76bac86bdf7a668c7331da089de80e8 Mon Sep 17 00:00:00 2001 From: Ugljesa Jovanovic Date: Wed, 10 Jun 2020 19:36:11 +0200 Subject: [PATCH] Fix linux script, install automake --- .travis.yml | 2 +- linuxBuild.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index aaa8729..713881d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ matrix: KBUILD=linux JAVA_OPTS=-Xmx2g #skip ./gradlew assemble that is normally invoked in installation step - install: true + install: sudo apt-get install automake script: - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then bash ./linuxBuild.sh; fi' - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash ./linuxBuildAndPublish.sh; fi' diff --git a/linuxBuild.sh b/linuxBuild.sh index b4870f1..b4b9f8b 100644 --- a/linuxBuild.sh +++ b/linuxBuild.sh @@ -6,6 +6,7 @@ cd sodiumWrapper ./makeLinux64.sh ./makeLinuxArm64.sh #now we can do the delegated build +cd .. ./gradlew multiplatform-crypto-delegated:build #and finally pure build ./gradlew multiplatform-crypto:build