-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KH-376: OpenMRS config to be CI validated
- Loading branch information
Showing
2 changed files
with
95 additions
and
1 deletion.
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,36 @@ | ||
name: Build and Publish | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '8' | ||
|
||
- name: Set settings.xml | ||
uses: s4u/[email protected] | ||
with: | ||
servers: | | ||
[{ | ||
"id": "mks-nexus-private", | ||
"username": "${{ secrets.MEKOM_NEXUS_USERNAME }}", | ||
"password": "${{ secrets.MEKOM_NEXUS_PASSWORD }}" | ||
}, | ||
{ | ||
"id": "mks-nexus-private-snapshots", | ||
"username": "${{ secrets.MEKOM_NEXUS_USERNAME }}", | ||
"password": "${{ secrets.MEKOM_NEXUS_PASSWORD }}" | ||
}] | ||
- name: Build and validate distro | ||
run: mvn --batch-mode clean install -P validator |
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