1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 23:41:18 +01:00

Merge pull request #21153 from miri64/release-tests/fix/grenoble-host-key

release-test.yml: also fetch host key from grenoble
This commit is contained in:
Kevin "Tristate Tom" Weiss 2025-01-21 13:37:19 +00:00 committed by GitHub
commit 297f7fe1d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,26 +71,16 @@ jobs:
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.IOTLAB_PRIVATE_KEY }}
- name: Fetch host key from IoT-LAB saclay site
- name: Fetch host keys from IoT-LAB sites
if: ${{ matrix.pytest_mark == 'iotlab_creds' }}
run: |
IOTLAB_USER=$(cat ~/.iotlabrc | cut -f1 -d:)
ssh -oStrictHostKeyChecking=accept-new \
${IOTLAB_USER}@saclay.iot-lab.info exit
- name: Fetch host key from IoT-LAB lille site
# Not being used in the most recent release specs but kept in for
# lille and saclay are not being used in the most recent release specs but kept in for
# backwords compatibility
if: ${{ matrix.pytest_mark == 'iotlab_creds' }}
run: |
IOTLAB_USER=$(cat ~/.iotlabrc | cut -f1 -d:)
ssh -oStrictHostKeyChecking=accept-new \
${IOTLAB_USER}@lille.iot-lab.info exit
- name: Fetch host key from IoT-LAB strasbourg site
if: ${{ matrix.pytest_mark == 'iotlab_creds' }}
run: |
IOTLAB_USER=$(cat ~/.iotlabrc | cut -f1 -d:)
ssh -oStrictHostKeyChecking=accept-new \
${IOTLAB_USER}@strasbourg.iot-lab.info exit
for site in grenoble saclay lille strasbourg; do
ssh -oStrictHostKeyChecking=accept-new \
"${IOTLAB_USER}@${site}.iot-lab.info" exit
done
- name: Checkout Release-Specs
uses: actions/checkout@main
with: