Skip to content

Commit 4c84368

Browse files
authored
Merge pull request #27 from marcphilipp/fixes/travis-build
Partially fix Travis build
2 parents 147babc + 0dbd288 commit 4c84368

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ language: java
22
sudo: false
33

44
jdk:
5-
- oraclejdk7
5+
- oraclejdk8
66

77
install: true
88
script: ./travis.sh
9+
910
env:
1011
- TARGET=CI
1112
- TARGET=IT SQ_VERSION=DEV

travis.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22

3-
set -euo pipefail
3+
set -euox pipefail
44

55
function installTravisTools {
6-
mkdir ~/.local
7-
curl -sSL https://github.com/SonarSource/travis-utils/tarball/v21 | tar zx --strip-components 1 -C ~/.local
6+
mkdir -p ~/.local
7+
curl -sSL https://github.com/SonarSource/travis-utils/tarball/v47 | tar zx --strip-components 1 -C ~/.local
88
source ~/.local/bin/install
99
}
1010

@@ -33,4 +33,3 @@ IT)
3333
;;
3434

3535
esac
36-

0 commit comments

Comments
 (0)