Skip to content

Commit 9624c0d

Browse files
authored
Updated .travis.yml deploy conditions and added fast_finish directive
- Restrict deployment actions to `oraclejdk8` - `fast_finish` allows the build to be marked done without waiting for early access build to complete
1 parent 9b465b1 commit 9624c0d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ jdk:
1313
- oraclejdk11
1414
- openjdk-ea
1515

16-
#
16+
# Don't fail the build on the early access JDK, or wait for it to finish before marking it done.
1717
matrix:
18+
fast_finish: tree
1819
allow_failures:
1920
- jdk: openjdk-ea
2021

@@ -43,16 +44,19 @@ deploy:
4344
skip_cleanup: true
4445
on:
4546
branch: develop
47+
jdk: oraclejdk8
4648
# Create CHANGELOG.md in the current directory
4749
- provider: script
4850
script: ./travis/changelog.sh >> CHANGELOG.md
4951
skip_cleanup: true
5052
on:
5153
tags: true
54+
jdk: oraclejdk8
5255
# Create a GitHub release and publish CHANGELOG.md to the release assets
5356
- provider: releases
5457
api_key: $GITHUB_API_KEY
5558
file: CHANGELOG.md
5659
skip_cleanup: true
5760
on:
5861
tags: true
62+
jdk: oraclejdk8

0 commit comments

Comments
 (0)