Skip to content

Commit 2e0a22d

Browse files
committed
Add integration test build
1 parent f8accd2 commit 2e0a22d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,19 @@ jobs:
5050
echo -e "::endgroup::"
5151
echo -e "${{ env.bashPass }} ${{ env.stepName }} ${{ env.bashEnd }}"
5252
53-
- name: Build for
53+
- name: Build for demo
5454
uses: espressif/esp-idf-ci-action@v1
5555
with:
5656
esp_idf_version: ${{ matrix.esp_idf_version }}
5757
target: ${{ matrix.esp_target }}
5858
path: './'
5959
command: python -m pip install --upgrade idf-component-manager && idf.py build
60+
61+
- name: Build for test
62+
uses: espressif/esp-idf-ci-action@v1
63+
with:
64+
esp_idf_version: ${{ matrix.esp_idf_version }}
65+
target: ${{ matrix.esp_target }}
66+
path: './'
67+
command:
68+
rm -rf build sdkconfig dependencies.lock; 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

0 commit comments

Comments
 (0)