From ad0edecc35e9d79a456cf51555e4cd495f95eb08 Mon Sep 17 00:00:00 2001 From: MrKevinWeiss Date: Mon, 23 Oct 2023 10:15:17 +0200 Subject: [PATCH] release-test.yml: Add stasbourg creds --- .github/workflows/release-test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index ce3152f5e6..a2c3868888 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -78,11 +78,19 @@ jobs: 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 + # 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 stasbourg site + if: ${{ matrix.pytest_mark == 'iotlab_creds' }} + run: | + IOTLAB_USER=$(cat ~/.iotlabrc | cut -f1 -d:) + ssh -oStrictHostKeyChecking=accept-new \ + ${IOTLAB_USER}@stasbourg.iot-lab.info exit - name: Checkout Release-Specs uses: actions/checkout@main with: