Update .travis.yml and deploy_master.sh

This commit is contained in:
Andrea Cavalli 2020-08-18 18:31:22 +02:00
parent f4deb0d4f6
commit 32354c4af4
2 changed files with 4 additions and 3 deletions

View File

@ -35,11 +35,11 @@ deploy:
script: |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
bash travis/linux.sh;
./travis/linux.sh;
fi
if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
bash travis/win.sh;
./travis/win.sh;
fi
bash travis/deploy_master.sh
./travis/deploy_master.sh

View File

@ -1,6 +1,7 @@
#!/bin/bash -e
# Setup variables
sudo apt install maven
export MAVEN_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/sun.nio.ch=ALL-UNNAMED --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/javax.crypto=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
if [ "$TRAVIS_CPU_ARCH" = "arm64" ]; then