-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
81 lines (69 loc) · 1.83 KB
/
.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
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
75
76
77
78
79
80
81
---
language: java
dist: jammy
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 = master AND type = push AND fork = false
- name: Publish-Release
if: tag IS present
jobs:
include:
- stage: Build-Test
jdk: openjdk11
install: true
script:
- build/setMavenVersion.sh
- mvn verify -fae -DskipITs $MVN_ARGS
- jdk: openjdk17
install: true
script:
- mvn verify -fae -DskipITs $MVN_ARGS
- name: Detect-Secrets
language: python
python: 3.12
install:
- pip install --upgrade "git+https://github.com/ibm/detect-secrets.git@master#egg=detect-secrets"
script:
- detect-secrets scan --update .secrets.baseline
- detect-secrets -v audit --report --fail-on-unaudited --fail-on-live --fail-on-audited-real .secrets.baseline
- stage: Semantic-Release
language: node_js
node_js: 22
install:
- pip install --user bump-my-version
- npm install
script:
- npm run semantic-release
- stage: Publish-Release
jdk: openjdk11
name: Publish-Javadoc
install: true
script:
- build/setMavenVersion.sh
- mvn clean javadoc:aggregate $MVN_ARGS
- build/publishJavadoc.sh
after_success:
- echo "Javadocs successfully published to gh-pages!"
- jdk: openjdk11
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!"