-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Update RELEASE.md * Update RELEASE.md * Update RELEASE.md * Update RELEASE.md * Add PR link * Fix CVE scanning (#2561) * Fixed CVE scan * Added JAVA_HOME env * Fixed versioning * Fixed versioning * Fixed versioning * Prevent GitHub Actions from being triggered twice (#2559) * Corrected action workflows * Test * Test * Fixed * Cleaned * Prevent GitHub Actions from being triggered twice (#2559) * Corrected action workflows * Test * Test * Fixed * Cleaned * Restored release.md * Restored release.md --------- Co-authored-by: JayasriR <124573358+JayasriR@users.noreply.github.com> Co-authored-by: Hugo Hills <39260692+hugohills-regnosys@users.noreply.github.com> Co-authored-by: eacunaISDA <82891014+eacunaISDA@users.noreply.github.com> Co-authored-by: lolabeis <leo.labeis@regnosys.com>
- Loading branch information
1 parent
c977d95
commit b49ab16
Showing
4 changed files
with
38 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Maven Build | ||
description: Run a Maven Build | ||
|
||
inputs: | ||
run-tests: | ||
description: Whether or not to run tests. The default is true. | ||
required: false | ||
type: boolean | ||
default: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up JDK 11 for x64 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
architecture: x64 | ||
cache: maven | ||
- name: Build with Maven | ||
shell: bash | ||
run: mvn -B -U clean package${{ inputs.run-tests && '' || ' -DskipTests' }} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
name: CDM Build on Windows machine | ||
|
||
on: [workflow_dispatch, push, pull_request] | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: Maven install | ||
run: mvn install | ||
- uses: ./.github/actions/maven-build |