File: .travis.yml

package info (click to toggle)
spatial4j 0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,112 kB
  • sloc: java: 10,905; xml: 401; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: java

sudo: false

script: mvn -Drandomized.multiplier=10 clean verify jacoco:report

jdk:
  - oraclejdk8
  - openjdk8
  - openjdk11
#TODO  - oraclejdk9

dist: trusty # Travis Xenial doesn't have oraclejdk8

notifications:
  email:
    - spatial4j-dev@locationtech.org

after_success:
  - du -hs target/site/jacoco/jacoco.xml
  - bash <(curl -s https://codecov.io/bash)