From 893c94e0bdb3856e43bb78a9382447c48d5dac28 Mon Sep 17 00:00:00 2001 From: "Ching-Hsin,Lee" Date: Fri, 23 Aug 2024 21:31:18 +0800 Subject: [PATCH] Add integration test build --- .github/workflows/build.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 72cbdaf..3c145e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,10 +50,21 @@ jobs: echo -e "::endgroup::" echo -e "${{ env.bashPass }} ${{ env.stepName }} ${{ env.bashEnd }}" - - name: Build for + - name: Build for demo uses: espressif/esp-idf-ci-action@v1 with: esp_idf_version: ${{ matrix.esp_idf_version }} target: ${{ matrix.esp_target }} path: './' command: python -m pip install --upgrade idf-component-manager && idf.py build + + - name: Build for test + uses: espressif/esp-idf-ci-action@v1 + with: + esp_idf_version: ${{ matrix.esp_idf_version }} + target: ${{ matrix.esp_target }} + path: './' + command: + python -m pip install --upgrade idf-component-manager && + echo -e "CONFIG_GRI_RUN_QUALIFICATION_TEST=y\nCONFIG_GRI_DEVICE_ADVISOR_TEST_ENABLED=y\nCONFIG_GRI_MQTT_TEST_ENABLED=y\nCONFIG_GRI_TRANSPORT_INTERFACE_TEST_ENABLED=y\nCONFIG_GRI_CORE_PKCS11_TEST_ENABLED=y" >> sdkconfig.defaults && + idf.py build