Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .sbtrepos

This file was deleted.

2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
sudo: required

language: scala
jdk:
- oraclejdk8
Expand Down
2 changes: 1 addition & 1 deletion admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ env:
script: admin/build.sh

jdk:
- openjdk6
- oraclejdk8
- openjdk11

notifications:
email:
Expand Down
9 changes: 2 additions & 7 deletions admin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ if [[ "$SCALANATIVE_VERSION" != "" ]]; then
if [[ "$TRAVIS_JDK_VERSION" == "oraclejdk8" && "$TRAVIS_SCALA_VERSION" =~ 2\.11\..* ]]; then
RELEASE_COMBO=true;
fi
elif [[ "$TRAVIS_JDK_VERSION" == "openjdk6" && "$TRAVIS_SCALA_VERSION" =~ 2\.11\..* \
|| "$TRAVIS_JDK_VERSION" == "oraclejdk8" && "$TRAVIS_SCALA_VERSION" =~ 2\.1[23]\..* ]]; then
elif [[ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]]; then
RELEASE_COMBO=true;
fi

Expand Down Expand Up @@ -60,8 +59,4 @@ if [[ "$TRAVIS_TAG" =~ $tagPat ]]; then
fi
fi

if [[ "$TRAVIS_JDK_VERSION" == "openjdk6" ]]; then
SBTOPTS="-Dsbt.override.build.repos=true -Dsbt.repository.config=./.sbtrepos"
fi

sbt $SBTOPTS "++$TRAVIS_SCALA_VERSION" "$publishVersion" "$projectPrefix/update" "$projectPrefix/compile" "$projectPrefix/test" "$projectPrefix/publishLocal" "$publishTask"
sbt "++$TRAVIS_SCALA_VERSION" "$publishVersion" "$projectPrefix/update" "$projectPrefix/compile" "$projectPrefix/test" "$projectPrefix/publishLocal" "$publishTask"