-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy path.travis.yml
41 lines (41 loc) · 980 Bytes
/
.travis.yml
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
36
37
38
39
40
41
dist: bionic
sudo: required
language: java
jobs:
fast_finish: true
include:
- build: ppc64le
os: linux
arch: ppc64le
jdk: openjdk17
script: mvn install -Dmaven.javadoc.skip=true
addons:
apt:
packages:
- maven
- curl
- build: s390x
os: linux
arch: s390x
jdk: openjdk17
# because of flakiness of tests on s390x, adding automatic retries on failure
script: mvn install -Dmaven.javadoc.skip=true -Dfailsafe.rerunFailingTestsCount=10
addons:
apt:
packages:
- maven
- curl
services:
- docker
before_install:
- curl -s https://rubygems.org/downloads/asciidoctor-2.0.17.gem -o asciidoctor-2.0.17.gem
- gem install --local asciidoctor
env:
global:
- PULL_REQUEST=${TRAVIS_PULL_REQUEST}
- BRANCH=${TRAVIS_BRANCH:-main}
- TAG=${TRAVIS_TAG:-latest}
- DOCKER_REGISTRY=quay.io
- MVN_ARGS="-B"
- TESTCONTAINERS_RYUK_DISABLED=TRUE
- TESTCONTAINERS_CHECKS_DISABLE=TRUE