REF-23: Add GitHub Actions CI pipeline - #51
Merged
Conversation
Build the OIO IDWS / LSBS reference reactor on pull requests and on pushes to master/develop. Uses JDK 8 (required by cxf-codegen's wsdl2java, which depends on javax.activation) and runs mvn clean install -DskipTests; integration tests are excluded as they need running WSPs and an interactive MOCES password.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
REF-23: GitHub-based CI pipeline
Adds
.github/workflows/ci.yml— a GitHub Actions build for the OIO IDWS / LSBS reference reactor.What it does
master/develop.mvn --batch-mode --no-transfer-progress clean install -DskipTests.Notes
cxf-codegen'swsdl2javadepends onjavax.activation, which was removed from the JDK after Java 8; on Java 11+ the build fails withNoClassDefFoundError: javax/activation/DataSource. The workflow pins JDK 8 with a comment so it isn't inadvertently upgraded.-DskipTests): theintegrationtest/*modules are live end-to-end tests needing running Java/.NET WSPs, and the bootstrap scenarios require a MOCES certificate password entered interactively — neither is available on a CI runner.