-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parser integration build main (#884)
* Spike/parser integration build (#882) * preparing pom.xml * preparing action * preparing pom.xml * Change visibility to private * Add JavaDoc * Add JavaDoc * Add JavaDoc and cleanup * Change public to private * Change public class to package-private * Add javadoc and rename event * Tweak and test ParserProperties * Restrict visibility * Tweak pom.xml * Changed pomCacheDirectory back to String * Changed pomCacheDirectory back to String * Fix integration build action * Fix javadoc * Fix profile name * Change branch name for dry-run * Delete build action for removed module * remove empty line * WIP: Trigger Integration Release * Remove blank line * WIP: Trigger Integration Release
- Loading branch information
Showing
25 changed files
with
576 additions
and
117 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Build sbm-utils | ||
name: Build | ||
on: | ||
push: | ||
branches: | ||
|
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
name: Release Integration | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Build"] | ||
types: ["completed"] | ||
# branches: ["parser-integration-build-main"] | ||
|
||
jobs: | ||
integration: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Check out sources | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 17 | ||
cache: 'maven' | ||
|
||
- name: Build with Maven | ||
env: | ||
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }} | ||
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }} | ||
working-directory: ./sbm-support-rewrite | ||
run: ./mvnw -B -Pspring-repos |
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
Oops, something went wrong.