Skip to content

Commit

Permalink
Add integration test build
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot committed Aug 23, 2024
1 parent f8accd2 commit 748abdc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,19 @@ 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:
rm sdkconfig dependencies.lock || 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 comments on commit 748abdc

Please sign in to comment.