summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7fd2dcd02ff54fe8b86f0c5df82ab7d57ec384b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
language: java

matrix:
  include:
    - os: linux
      arch: arm64
      jdk: openjdk11
      install: |
        f=$(which javac)
        while [[ -L $f ]]; do f=$(readlink $f); done
        export JAVA_HOME=${f%/bin/*}

    - os: linux
      arch: s390x
      jdk: openjdk11

cache:
  directories:
  - "$HOME/.m2"

addons:
  apt:
    update: true
    packages:
      - maven
      - libcppunit-dev

script: mvn clean apache-rat:check verify -DskipTests spotbugs:check checkstyle:check -Pfull-build

branches:
  only:
  - master
  - branch-3.7
  - branch-3.6
  - branch-3.5