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

release-test.yml: also fetch host key from grenoble

This commit is contained in:
Martine Lenders 2025-01-21 14:17:17 +01:00
parent 838321c138
commit b87b62c5d5
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80

View File

@ -73,13 +73,13 @@ jobs:
ssh-private-key: ${{ secrets.IOTLAB_PRIVATE_KEY }}
- name: Fetch host keys from IoT-LAB sites
if: ${{ matrix.pytest_mark == 'iotlab_creds' }}
# lille is 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
run: |
IOTLAB_USER=$(cat ~/.iotlabrc | cut -f1 -d:)
for site in saclay lille strasbourg; do
for site in grenoble saclay lille strasbourg; do
ssh -oStrictHostKeyChecking=accept-new \
"${IOTLAB_USER}@${site}.iot-lab.info exit"
"${IOTLAB_USER}@${site}.iot-lab.info" exit
done
- name: Checkout Release-Specs
uses: actions/checkout@main