@@ -29,28 +29,28 @@ concurrency:
2929
3030jobs :
3131 build :
32- continue-on-error : ${{ github.event_name == 'pull_request' && matrix.allow_fail == true }}
32+ # continue-on-error: ${{ github.event_name == 'pull_request' && matrix.allow_fail == true }}
3333 env :
3434 component_manager_ver : " 2.2.*"
3535 idf_build_apps_ver : " 2.10.1"
3636 strategy :
37- fail-fast : false
37+ # fail-fast: false
3838 matrix :
3939 idf_ver :
40- - " latest"
40+ # - "latest"
4141 - " release-v6.0"
4242 - " release-v5.5"
4343 - " release-v5.4"
4444 - " release-v5.3"
4545 - " release-v5.2"
4646 - " release-v5.1"
47- parallel_index : [1, 2, 3, 4, 5]
47+ parallel_index : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]
4848 include :
4949 # Default values for all versions
50- - parallel_count : 5
50+ - parallel_count : 10
5151 allow_fail : false
52- - idf_ver : " latest"
53- allow_fail : true
52+ # - idf_ver: "latest"
53+ # allow_fail: true
5454 runs-on : ubuntu-latest
5555 container : espressif/idf:${{ matrix.idf_ver }}
5656 steps :
6464 separator : ' ;' # idf-build-apps expects files seprated with semicolon
6565
6666 - name : Build ESP-BSP applications
67- continue-on-error : ${{ github.event_name == 'pull_request' && matrix.allow_fail == true }}
67+ # continue-on-error: ${{ github.event_name == 'pull_request' && matrix.allow_fail == true }}
6868 if : always()
6969 shell : bash
7070 env :
7676 pip install idf-component-manager==${{ env.component_manager_ver }} ruamel.yaml idf-build-apps==${{ env.idf_build_apps_ver }} --upgrade
7777
7878 echo "Files changed: "${{env.ALL_CHANGED_FILES}}
79- idf-build-apps find ${{env.ALL_CHANGED_FILES}}
80- idf-build-apps build --parallel-count ${{ matrix.parallel_count }} --parallel-index ${{ matrix.parallel_index }} ${{env.ALL_CHANGED_FILES}} --collect-app-info build_info_${{ matrix.idf_ver }}_${{ matrix.parallel_index }}.json || echo "BUILD_FAILED=true" >> $GITHUB_ENV
79+ # idf-build-apps find ${{env.ALL_CHANGED_FILES}}
80+ # idf-build-apps build --parallel-count ${{ matrix.parallel_count }} --parallel-index ${{ matrix.parallel_index }} ${{env.ALL_CHANGED_FILES}} --collect-app-info build_info_${{ matrix.idf_ver }}_${{ matrix.parallel_index }}.json || echo "BUILD_FAILED=true" >> $GITHUB_ENV
81+ idf-build-apps build --parallel-count ${{ matrix.parallel_count }} --parallel-index ${{ matrix.parallel_index }} --collect-app-info build_info_${{ matrix.idf_ver }}_${{ matrix.parallel_index }}.json || echo "BUILD_FAILED=true" >> $GITHUB_ENV
8182
8283 # Warning, if failed with master
8384 - name : Warn if latest build failed
9899 See details: [View build logs](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}#step:${{ github.job }})
99100
100101 - uses : actions/upload-artifact@v4
101- if : github.repository_owner == 'espressif' && needs.prepare.outputs.build_only == '0'
102+ if : github.repository_owner == 'espressif' # && needs.prepare.outputs.build_only == '0'
102103 with :
103104 name : app_binaries_${{ matrix.idf_ver }}_${{ matrix.parallel_index }}
104105 path : |
0 commit comments