File tree 2 files changed +9
-11
lines changed
2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -2,25 +2,23 @@ language: scala
2
2
sudo : false
3
3
env :
4
4
global :
5
- - PUBLISH_JDK=openjdk6 # admin/build.sh only publishes when running on this jdk
6
5
# Don't commit sensitive files, instead commit a version encrypted with $SECRET,
7
6
# this environment variable is encrypted with this repo's private key and stored below:
8
7
# (See http://docs.travis-ci.com/user/environment-variables/#Secure-Variables.)
9
8
- secure : " YO/7YiWEirzz0EAy7oVNmAKroj4qCLZNMkPS+xW/VgeGjuEV+Nk1S7pwxF0o2OggSxIQ+a0lWSrOPQqSXMjOstDIzzGeYfuAt0+0fupXtDDge0mXpCCMadrvYzff1/5XYX0dJ+pjJmz6IgF1hliPJHIuddhhdqPxdHWTHAKm9ME="
10
9
11
10
script :
12
11
- admin/build.sh
13
- scala :
14
- - 2.11.8
15
- - 2.12.0-RC1 # !!! Duplicated below, edit with care
16
- jdk :
17
- - openjdk6
18
- - oraclejdk8
19
12
matrix :
20
- exclude :
21
-
22
- - scala : 2.12.0-RC1 # !!! Duplicated above, edit with care
13
+ include :
14
+ - scala : 2.11.8
23
15
jdk : openjdk6
16
+ env : IS_PUBLISH_JDK=true
17
+ - scala : 2.11.8
18
+ jdk : oraclejdk8
19
+ - scala : 2.12.0-RC1
20
+ jdk : oraclejdk8
21
+ env : IS_PUBLISH_JDK=true
24
22
notifications :
25
23
email :
26
24
Original file line number Diff line number Diff line change 5
5
# git on travis does not fetch tags, but we have TRAVIS_TAG
6
6
# headTag=$(git describe --exact-match ||:)
7
7
8
- if [ " $TRAVIS_JDK_VERSION " == " $PUBLISH_JDK " ] && [[ " $TRAVIS_TAG " =~ ^v[0-9]+\. [0-9]+\. [0-9]+ (-[A-Za-z0-9-]+)? ]]; then
8
+ if [ " $IS_PUBLISH_JDK " == " true " ] && [[ " $TRAVIS_TAG " =~ ^v[0-9]+\. [0-9]+\. [0-9]+ (-[A-Za-z0-9-]+)? ]]; then
9
9
echo " Going to release from tag $TRAVIS_TAG !"
10
10
myVer=$( echo $TRAVIS_TAG | sed -e s/^v// | sed -e ' s/_[0-9]*\.[0-9]*//' )
11
11
publishVersion=' set every version := "' $myVer ' "'
You can’t perform that action at this time.
0 commit comments