-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MOSIP-29918] added db-test.yml and updated pms-oidc_client.sql (#614)
* [MOSIP-29918] added db-test.yml Signed-off-by: Rakshithb1 <[email protected]> * [MOSIP-29918] updated pms-oidc_client.sql Signed-off-by: Rakshithb1 <[email protected]> --------- Signed-off-by: Rakshithb1 <[email protected]>
- Loading branch information
1 parent
9c6bbfd
commit a639fe4
Showing
3 changed files
with
52 additions
and
13 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,39 @@ | ||
name: PostgreSQL Test | ||
|
||
on: | ||
release: | ||
types: [published] | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
paths: | ||
- 'db_scripts/**' | ||
workflow_dispatch: | ||
inputs: | ||
message: | ||
description: 'Message for manually triggering' | ||
required: false | ||
default: 'Triggered for Updates' | ||
type: string | ||
push: | ||
branches: | ||
- '!release-branch' | ||
- release* | ||
- master | ||
- 1.* | ||
- develop* | ||
- MOSIP* | ||
paths: | ||
- 'db_scripts/**' | ||
|
||
jobs: | ||
build-db-test: | ||
strategy: | ||
matrix: | ||
include: | ||
- DB_LOCATION: 'db_scripts/mosip_pms' | ||
DB_NAME: 'mosip_pms' | ||
fail-fast: false | ||
name: ${{ matrix.DB_NAME }} | ||
uses: mosip/kattu/.github/workflows/db-test.yml@master | ||
with: | ||
DB_LOCATION: ${{ matrix.DB_LOCATION}} |
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,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
## Properties file | ||
set -e | ||
properties_file="$1" | ||
|