Skip to content

Commit 5096c82

Browse files
committed
ci: add password to CI scripts
No changes in functionality, just ready to use CMK-33554 Change-Id: Ic8badde7938c49179ba6aa9f690200611b7acedc
1 parent 8d4ddd1 commit 5096c82

4 files changed

Lines changed: 12 additions & 1 deletion

File tree

buildscripts/scripts/stages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,7 @@ STAGES:
762762
SEC_VAR_LIST:
763763
- "CI_TEST_SQL_DB_ENDPOINT"
764764
- "CI_ORA2_DB_TEST_PASSWORD"
765+
- "CI_ORA_TEST_PASSWORD"
765766
DIR: "packages/mk-oracle"
766767
COMMAND: "./run --build --unit-tests --component-tests --lint=clippy"
767768
BAZEL_LOCKS_AMOUNT: 1

buildscripts/scripts/test-component-mk-oracle.groovy

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ void main() {
4646
credentialsId: "CI_ORA2_DB_TEST_PASSWORD",
4747
variable: "CI_ORA2_DB_TEST_PASSWORD",
4848
),
49+
string(
50+
credentialsId: "CI_ORA_TEST_PASSWORD",
51+
variable: "CI_ORA_TEST_PASSWORD",
52+
),
4953
string(
5054
credentialsId: "CI_ORA2_DB_TEST_SERVER",
5155
variable: "SERVER",

buildscripts/scripts/winagt-build.groovy

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,11 @@ void main() {
3434
string(
3535
credentialsId: "CI_ORA2_DB_TEST_PASSWORD",
3636
variable:"CI_ORA2_DB_TEST_PASSWORD"),
37+
string(
38+
credentialsId: "CI_ORA_TEST_PASSWORD",
39+
variable:"CI_ORA_TEST_PASSWORD"),
3740
]) {
38-
// The windows.build function will create stages.
41+
// The windows.build function will create stages.
3942
windows.build(
4043
TARGET: 'agent_with_sign',
4144
PASSWORD: WIN_SIGN_PASSWORD,

buildscripts/scripts/winagt-test-build.groovy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ void main() {
2121
string(
2222
credentialsId: "CI_ORA2_DB_TEST_PASSWORD",
2323
variable:"CI_ORA2_DB_TEST_PASSWORD"),
24+
string(
25+
credentialsId: "CI_ORA_TEST_PASSWORD",
26+
variable:"CI_ORA_TEST_PASSWORD"),
2427
]) {
2528
windows.build(
2629
TARGET: 'agent_no_sign'

0 commit comments

Comments
 (0)