-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.travis.yml
More file actions
74 lines (65 loc) · 1.55 KB
/
.travis.yml
File metadata and controls
74 lines (65 loc) · 1.55 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
language: java
dist: bionic
jdk:
- openjdk11
notifications:
email: true
branches:
except:
- gh-pages
cache:
directories:
- "$HOME/.m2"
env:
global:
- MVN_ARGS="--settings ./build/.travis.settings.xml"
stages:
- name: Build-Test
- name: Semantic-Release
if: branch = main AND type = push AND fork = false
- name: Publish-Release
if: tag IS present
before_install:
- sudo apt-get update
- env | grep TRAVIS
- pyenv global 3.8
jobs:
include:
# Build and test stage
- stage: Build-Test
jdk: openjdk11
install: true
script:
- build/setMavenVersion.sh
- mvn verify -fae -DskipITs $MVN_ARGS
- jdk: openjdk11
install: true
script:
- mvn verify -fae -DskipITs $MVN_ARGS
- jdk: openjdk17
install: true
script:
- mvn verify -fae -DskipITs $MVN_ARGS
# Publish stage
- stage: Publish-Release
jdk: openjdk11
name: Publish-Javadoc
install: true
if: tag IS present
script:
- build/setMavenVersion.sh
- mvn clean javadoc:aggregate $MVN_ARGS
- build/publishJavadoc.sh
after_success:
- echo "Javadocs successfully published to gh-pages!"
# - jdk: openjdk11
# if: tag IS present
# name: Publish-To-Maven-Central
# install: true
# script:
# - build/setupSigning.sh
# - build/setMavenVersion.sh
# - mvn deploy $MVN_ARGS -DskipTests -P central
# after_success:
# - echo "Maven artifacts successfully published to Maven Central!"