-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #278 from wultra/develop
Merge develop to master
- Loading branch information
Showing
15 changed files
with
592 additions
and
55 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,16 @@ | ||
name: Run Coverity scan and upload results | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 10 1 * *' # monthly | ||
|
||
|
||
jobs: | ||
coverity-scan: | ||
uses: wultra/wultra-infrastructure/.github/workflows/coverity-scan.yml@develop | ||
secrets: inherit | ||
with: | ||
project-name: ${{ github.event.repository.name }} | ||
version: ${{ github.sha }} | ||
description: ${{ github.ref }} |
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,52 @@ | ||
name: Deploy with Maven | ||
|
||
on: | ||
workflow_dispatch: | ||
branches: | ||
- 'develop' | ||
- 'master' | ||
- 'releases/**' | ||
- 'test/ci' | ||
inputs: | ||
release_type: | ||
type: choice | ||
description: releasing to snapshot or release | ||
default: snapshot | ||
options: | ||
- snapshot | ||
- release | ||
environment: | ||
type: environment | ||
default: internal-publish | ||
description: internal or external repository | ||
push: | ||
branches: | ||
- 'develop' | ||
- 'test/ci' | ||
|
||
|
||
|
||
jobs: | ||
maven-deploy-jfrog: | ||
if: ${{ github.event_name == 'push' }} | ||
name: Deploy to jfrog | ||
uses: wultra/wultra-infrastructure/.github/workflows/maven-deploy.yml@develop | ||
with: | ||
environment: internal-publish | ||
release_type: snapshot | ||
secrets: | ||
username: ${{ secrets.MAVEN_CENTRAL_USERNAME }} | ||
password: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} | ||
|
||
maven-deploy-manual: | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
name: Deploy by parameter | ||
uses: wultra/wultra-infrastructure/.github/workflows/maven-deploy.yml@develop | ||
with: | ||
environment: ${{ inputs.environment }} | ||
release_type: ${{ inputs.release_type }} | ||
secrets: | ||
username: ${{ secrets.MAVEN_CENTRAL_USERNAME }} | ||
password: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} | ||
gpg_passphrase: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} | ||
gpg_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }} |
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,20 @@ | ||
name: Test with Maven | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'develop' | ||
- 'master' | ||
- 'releases/**' | ||
- 'test/ci' | ||
pull_request: | ||
branches: | ||
- 'develop' | ||
- 'master' | ||
- 'releases/**' | ||
|
||
jobs: | ||
maven-tests: | ||
uses: wultra/wultra-infrastructure/.github/workflows/maven-test.yml@develop | ||
secrets: inherit |
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,12 @@ | ||
name: Run OWASP Dependency Check | ||
on: | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: | ||
- 'develop' | ||
|
||
jobs: | ||
owasp-check: | ||
uses: wultra/wultra-infrastructure/.github/workflows/owasp-dependency-check.yml@develop | ||
secrets: inherit |
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
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.