From f0b52a98310efb3e5944fc6da359b288c3bad4d7 Mon Sep 17 00:00:00 2001 From: Ben Lye Date: Wed, 21 Feb 2024 13:07:18 +0000 Subject: [PATCH] Fix 5-in-1 tests --- .github/workflows/main.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cdd202c..8373cd8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -175,7 +175,7 @@ jobs: run: | # Skip the PPM-only build for boards where it's too large now if [[ "$BOARD" =~ ":STM32F1:multistm32f103cb:debug_option=none" ]] || [[ "$BOARD" =~ ":STM32F1:multi5in1t18int" ]]; then - printf "Not testing serial-only build for $BOARD."; + printf "Not testing PPM-only build for $BOARD."; else source ./buildroot/bin/buildFunctions; cp ./_Config.h.bak Multiprotocol/_Config.h @@ -185,9 +185,14 @@ jobs: - name: Build each RF module individually run: | - source ./buildroot/bin/buildFunctions; - cp ./_Config.h.bak Multiprotocol/_Config.h; - buildEachRFModule; + # Skip the per-RF module builds for boards which have fixed modules + if [[ "$BOARD" =~ ":STM32F1:multi5in1t18int" ]]; then + printf "Not testing individual RF module builds for $BOARD."; + else + source ./buildroot/bin/buildFunctions; + cp ./_Config.h.bak Multiprotocol/_Config.h; + buildEachRFModule; + fi - name: Build each protocol individually run: |