This repository was archived by the owner on Sep 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +13
-21
lines changed Expand file tree Collapse file tree 7 files changed +13
-21
lines changed Original file line number Diff line number Diff line change @@ -2,18 +2,11 @@ language: java
22jdk :
33 - oraclejdk8
44sudo : true
5- before_install :
6- - echo 'America/Los_Angeles' | sudo tee /etc/timezone
7- - sudo dpkg-reconfigure --frontend noninteractive tzdata
8- - chmod 755 ./shared/dev-tasks/*.sh
9- - chmod 755 ./gradlew
105install :
11- - ./shared/dev-tasks /install-dependencies.sh
6+ - ./.travis /install-dependencies.sh
127script :
13- - ./shared/dev-tasks/run-tests.sh
14-
15- # whitelist
8+ - ./.travis/run-tests.sh
169branches :
1710 only :
1811 - master
19- - dev
12+ - dev
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ if [ " ${TRAVIS_SECURE_ENV_VARS} " = " true" ] ; then
4+ ./.travis/travis-install-ml.sh release
5+ ./.travis/setup-marklogic.sh
6+ fi
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33if [ " ${TRAVIS_SECURE_ENV_VARS} " = " true" ] ; then
4- cd ${TRAVIS_BUILD_DIR}
5- ./gradlew test -i
4+ ./gradlew clean test -i
65fi
File renamed without changes.
Original file line number Diff line number Diff line change 4545 # if the user passed a day string as a param then use it instead
4646 test $1 && day=$1
4747 # make a version number out of the date
48- ver=" 9 .0-$day "
48+ ver=" 8 .0-$day "
4949
5050 echo " ********* Downloading MarkLogic nightly $ver "
5151
5656 suff=" _amd64.deb"
5757 fnamedeb=$fnamedeb$suff
5858
59- url=" https://root.marklogic.com/nightly/builds/linux64-rh7/rh7v -intel64-90 -test-build .marklogic.com/b9_0 /pkgs.$day /$fname "
59+ url=" https://root.marklogic.com/nightly/builds/linux64/rh6 -intel64-80 -test-1 .marklogic.com/b8_0 /pkgs.$day /$fname "
6060
6161 status=$( curl -k --anyauth -u $MLBUILD_USER :$MLBUILD_PASSWORD --head --write-out %{http_code} --silent --output /dev/null $url )
6262 if [[ $status = 200 ]]; then
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-3.1 -bin.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.2 -bin.zip
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments