Skip to content

Commit a99f3b5

Browse files
committed
TEST
1 parent 8f54592 commit a99f3b5

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/build-run-applications.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,28 @@ concurrency:
2929

3030
jobs:
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:
@@ -64,7 +64,7 @@ jobs:
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:
@@ -76,8 +76,9 @@ jobs:
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
@@ -98,7 +99,7 @@ jobs:
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

Comments
 (0)