Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix GitHub Actions configuration #453

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,4 @@ jobs:
with:
java-version: ${{ matrix.java }}
- name: Build
run: mvn -B -V -Prun-its clean verify jacoco:report
- name: Publish coverage reports
needs: Build
run: mvn coveralls:report
run: mvn -B -V -Prun-its clean verify
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ before_script:
- export MAVEN_SKIP_RC=true
jdk:
- oraclejdk11
# oraclejdk10 not included for being deprecated
- oraclejdk9
- oraclejdk8
- openjdk11
- openjdk10
- openjdk9
- openjdk8
# skip installation step entirely
install: true
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ Documentation::

Build / Infrastructure::

* Updated maven-release-plugin version (3.0.0-M1) and POM scm configuration to simplify release process
* Updated maven-release-plugin version (3.0.0-M1) and POM scm configuration to simplify release process
* Adds GitHub Actions build for Linux, Windows, MacOS and Java 8, 11 (#452, #453)