From b87b62c5d5ebd79b578853a8a1bb0cd82c2f8862 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Tue, 21 Jan 2025 14:17:17 +0100 Subject: [PATCH] release-test.yml: also fetch host key from grenoble --- .github/workflows/release-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index 6cde0458ba..42cda58148 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -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