From 3dee380fe8090d25ba152f14eb51f2368dfbb242 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Mon, 21 Jun 2021 13:41:11 +0200 Subject: [PATCH] release-test: fetch host key for lille site Tasks 4.5 and 4.6 use the firefly nodes at the lille site, so we need to verify the host key for that side as well. --- .github/workflows/release-test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index 6d32fea599..f015c530bf 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -77,6 +77,12 @@ jobs: 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 + 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: Checkout Release-Specs uses: actions/checkout@v2 with: