Skip to content

Commit 4c00b30

Browse files
committed
Ci: Remove secrets from workflow files
Remove secrets from workflow files, as they are no longer needed.
1 parent dff81a4 commit 4c00b30

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/nightly-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ jobs:
5252
run: |
5353
python3 gen_config.py \
5454
--session_id ${{ env.SESSION_ID }} \
55-
--build ${{ secrets.RUNNER_BUILD }} \
56-
--mtl_path ${{ secrets.RUNNER_MTL_PATH }} \
55+
--build ${{ github.workspace }} \
56+
--mtl_path ${{ github.workspace }} \
5757
--pci_device ${{ env.PCI_DEVICE }} \
5858
--ip_address 127.0.0.1 \
59-
--username ${{ secrets.RUNNER_USERNAME }} \
60-
--key_path ${{ secrets.RUNNER_KEY_PATH }}
59+
--username ${USER} \
60+
--key_path /home/${USER}/.ssh/id_rsa
6161
- name: 'preparation: Evaluate chosen validation-test-port-p and validation-test-port-r'
6262
run: |
6363
eval "export TEST_PORT_P=TEST_VF_PORT_P_0"

.github/workflows/smoke-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ jobs:
7979
run: |
8080
python3 gen_config.py \
8181
--session_id ${{ env.SESSION_ID }} \
82-
--build ${{ secrets.RUNNER_BUILD }} \
83-
--mtl_path ${{ secrets.RUNNER_MTL_PATH }} \
82+
--build ${{ github.workspace }} \
83+
--mtl_path ${{ github.workspace }} \
8484
--pci_device ${{ env.PCI_DEVICE }} \
8585
--ip_address 127.0.0.1 \
86-
--username ${{ secrets.RUNNER_USERNAME }} \
87-
--key_path ${{ secrets.RUNNER_KEY_PATH }}
86+
--username ${USER} \
87+
--key_path /home/${USER}/.ssh/id_rsa
8888
- name: 'preparation: Evaluate choosen validation-test-port-p and validation-test-port-r'
8989
if: ${{ needs.smoke-check-for-changes.outputs.changed == 'true' }}
9090
run: |

0 commit comments

Comments
 (0)