From 8eaa60b5c02af98a1678154b9272694cf80b25f7 Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Thu, 31 Jul 2025 13:14:11 +0200 Subject: [PATCH] Update totals --- .github/workflows/validate_esphome.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate_esphome.yml b/.github/workflows/validate_esphome.yml index 95c6de9..a36ebb2 100644 --- a/.github/workflows/validate_esphome.yml +++ b/.github/workflows/validate_esphome.yml @@ -277,13 +277,13 @@ jobs: [ "${{ needs.build_ard_hw_speaker.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) [ "${{ needs.build_ard_hw_vibration.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) [ "${{ needs.build_ard_ble_proxy_latest.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) - TOTAL=$((TOTAL + 7)) + TOTAL=$((TOTAL + 6)) # Count dev builds (if not skipped) if [ "${{ inputs.skip_dev }}" != "true" ]; then [ "${{ needs.build_ard_basic_dev.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) [ "${{ needs.build_ard_ble_proxy_dev.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) - TOTAL=$((TOTAL + 3)) + TOTAL=$((TOTAL + 2)) fi echo "🤖 Arduino Framework: $SUCCESS/$TOTAL builds passed" @@ -321,13 +321,13 @@ jobs: [ "${{ needs.build_idf_hw_speaker.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) [ "${{ needs.build_idf_hw_vibration.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) [ "${{ needs.build_idf_ble_proxy_latest.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) - TOTAL=$((TOTAL + 7)) + TOTAL=$((TOTAL + 6)) # Count dev builds (if not skipped) if [ "${{ inputs.skip_dev }}" != "true" ]; then [ "${{ needs.build_idf_basic_dev.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) [ "${{ needs.build_idf_ble_proxy_dev.result }}" == "success" ] && SUCCESS=$((SUCCESS + 1)) - TOTAL=$((TOTAL + 3)) + TOTAL=$((TOTAL + 2)) fi echo "🔧 ESP-IDF Framework: $SUCCESS/$TOTAL builds passed"