From c7b3b304ba76a02950fb10a74e4d76b2fd4adee1 Mon Sep 17 00:00:00 2001 From: Sebastien Besson Date: Fri, 24 Jul 2020 09:45:57 +0200 Subject: [PATCH 1/2] mc: fix the version command as --version --- location-server/start-location.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/location-server/start-location.sh b/location-server/start-location.sh index 61aaf9a2..a47c2062 100755 --- a/location-server/start-location.sh +++ b/location-server/start-location.sh @@ -10,7 +10,7 @@ PLATFORM=`uname | tr '[:upper:]' '[:lower:]'` curl -sfSo mc "https://dl.minio.io/client/mc/release/$PLATFORM-amd64/mc" chmod +x minio mc ./minio --version -./mc version +./mc --version export MINIO_ACCESS_KEY=accesskey MINIO_SECRET_KEY=secretkey ./minio server --address localhost:$PORT . & From 85e9282e4b1ca28fb872b2579a6c54bd924e2d9a Mon Sep 17 00:00:00 2001 From: Sebastien Besson Date: Fri, 24 Jul 2020 09:46:39 +0200 Subject: [PATCH 2/2] Cleanup Travis CI config --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2c00abf7..06d182e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,8 @@ --- +os: linux +dist: xenial language: java -sudo: false - -# http://docs.travis-ci.com/user/caching/#Arbitrary-directories cache: directories: - $HOME/.m2 @@ -18,5 +17,5 @@ before_script: script: - mvn test -B -Dtestng.runHttpRemoteTests=1 -Dtestng.runS3RemoteTests=1 -matrix: +jobs: fast_finish: true