From f8fe14ebf7f929d7307ccedafadacca9c41a64ec Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 20 Jan 2021 14:53:48 +0100 Subject: [PATCH 1/2] ci/test-on-iotlab: remove suit_update from excluded apps --- .github/workflows/test-on-iotlab.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-on-iotlab.yml b/.github/workflows/test-on-iotlab.yml index 05af04bb80..c75632b43c 100644 --- a/.github/workflows/test-on-iotlab.yml +++ b/.github/workflows/test-on-iotlab.yml @@ -76,10 +76,11 @@ jobs: DOCKER_ENVIRONMENT_CMDLINE: -e BUILD_FILES=\$$\(BINFILE\) COMPILE_AND_TEST_FOR_BOARD: ./dist/tools/compile_and_test_for_board/compile_and_test_for_board.py COMPILE_AND_TEST_ARGS: --with-test-only --jobs=2 --report-xml - # Exclude applications that require the riotboot feature and providing a test - # because flashing at a specific offset is not (yet) supported on IoT-LAB - # so they will always fail because of that limitation - APPLICATIONS_EXCLUDE: examples/suit_update tests/riotboot + # Exclude applications that cannot run on iotlab + # - tests/riotboot requires the riotboot feature and provides a test + # but flashing at a specific offset is not (yet) supported on IoT-LAB + # so it will always fail because of that limitation + APPLICATIONS_EXCLUDE: tests/riotboot steps: - name: Set up Python 3.8 uses: actions/setup-python@v2 From 4baa19c04667627464780e32360af0706b2fb2da Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 20 Jan 2021 14:54:19 +0100 Subject: [PATCH 2/2] ci/test-on-iotlab: exclude tests/periph_timer_short_relative_set --- .github/workflows/test-on-iotlab.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-on-iotlab.yml b/.github/workflows/test-on-iotlab.yml index c75632b43c..99249fe94d 100644 --- a/.github/workflows/test-on-iotlab.yml +++ b/.github/workflows/test-on-iotlab.yml @@ -76,11 +76,12 @@ jobs: DOCKER_ENVIRONMENT_CMDLINE: -e BUILD_FILES=\$$\(BINFILE\) COMPILE_AND_TEST_FOR_BOARD: ./dist/tools/compile_and_test_for_board/compile_and_test_for_board.py COMPILE_AND_TEST_ARGS: --with-test-only --jobs=2 --report-xml - # Exclude applications that cannot run on iotlab + # Exclude applications that are expected to fail or cannot run on iotlab + # - tests/periph_timer_short_relative_set is expected to fail # - tests/riotboot requires the riotboot feature and provides a test # but flashing at a specific offset is not (yet) supported on IoT-LAB # so it will always fail because of that limitation - APPLICATIONS_EXCLUDE: tests/riotboot + APPLICATIONS_EXCLUDE: tests/periph_timer_short_relative_set tests/riotboot steps: - name: Set up Python 3.8 uses: actions/setup-python@v2