From 90879e5ae7be4260b5684ff770fb171e4bc55a62 Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 14 Dec 2020 20:41:33 -0800 Subject: [PATCH] Remove api symlink deletion step from CI workflow The symlink for ArduinoCore-API in the Mbed OS Boards core library has been removed. This resulted in the step of the "Compile Examples" CI workflow that removes the now non-existent symlink to fail. --- .github/workflows/compile-examples.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index 28e48bb07..972eadb2d 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -147,11 +147,6 @@ jobs: # the arduino/actions/libraries/compile-examples action will install the platform from this path path: ${{ env.ARDUINOCORE_MBED_STAGING_PATH }} - - name: Remove ArduinoCore-API symlink from Arduino mbed-Enabled Boards platform - # this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used - if: matrix.board.type == 'mbed' - run: rm "${{ env.ARDUINOCORE_MBED_STAGING_PATH }}/cores/arduino/api" - - name: Checkout ArduinoCore-API # this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used if: matrix.board.type == 'mbed'