Skip to content

Commit 0cb31f2

Browse files
committed
fix(workflow): add console_password to test-add-compiler workflows
- Added `console_password` parameter to the `test-add-compiler-matrix.yml` and `test-add-compiler.yaml` workflows. - This ensures the console password is passed correctly during the workflow execution.
1 parent f7e007f commit 0cb31f2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test-add-compiler-matrix.yml

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ jobs:
8282
--inventoryfile spec/fixtures/litmus_inventory.yaml \
8383
--modulepath spec/fixtures/modules \
8484
architecture=${{ matrix.architecture }} \
85+
console_password=${{ secrets.CONSOLE_PASSWORD }} \
8586
version=${{ matrix.version }}
8687
- name: Run add_compiler plan
8788
timeout-minutes: 50

.github/workflows/test-add-compiler.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ jobs:
8383
--inventoryfile spec/fixtures/litmus_inventory.yaml \
8484
--modulepath spec/fixtures/modules \
8585
architecture=${{ matrix.architecture }} \
86-
version=${{ matrix.version }}
86+
version=${{ matrix.version }} \
87+
console_password=${{ secrets.CONSOLE_PASSWORD }
8788
- name: Run add_compiler plan
8889
timeout-minutes: 50
8990
run: |

0 commit comments

Comments
 (0)