-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f27353
commit c21508a
Showing
4 changed files
with
25 additions
and
223 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,33 +1,7 @@ | ||
name: pass-core Continuous Integration | ||
on: [ pull_request, workflow_dispatch ] | ||
|
||
concurrency: | ||
group: ci-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
name: Continuous Integration | ||
on: [pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
print-workflow-description: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "This is a CI build of branch ${{ github.ref }} in repository ${{ github.repository }}" | ||
- run: echo "This job was triggered by a ${{ github.event_name }} event and is running on a ${{ runner.os }} server" | ||
|
||
run-tests: | ||
test: | ||
name: "Run Unit & Integration Tests" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout the repository" | ||
uses: actions/checkout@v2 | ||
- name: "Set up JDK 17" | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 17 | ||
distribution: 'temurin' | ||
- name: "Cache Maven packages" | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m3-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-m3 | ||
- name: "Run unit & integration tests" | ||
run: mvn -U -B -V -ntp verify --file pom.xml | ||
uses: eclipse-pass/main/.github/workflows/ci.yml@main |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Publish SNAPSHOT | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
snapshot: | ||
uses: eclipse-pass/main/.github/workflows/snapshot.yml@main | ||
secrets: inherit | ||
with: | ||
images: ghcr.io/eclipse-pass/deposit-services-core ghcr.io/eclipse-pass/pass-notification-service ghcr.io/eclipse-pass/jhu-grant-loader ghcr.io/eclipse-pass/pass-journal-loader ghcr.io/eclipse-pass/pass-nihms-loader |
This file was deleted.
Oops, something went wrong.