Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: host tests (no IDF)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: make -C tests/host test

host-example:
Expand All @@ -21,7 +21,7 @@ jobs:
container:
image: espressif/idf:release-v6.0
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: idf.py build (esp32p4)
working-directory: examples/host_p4_demo
run: |
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
0xd000 build/ota_data_initial.bin
0x10000 build/network_adapter.bin
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: idf.py set-target ${{ matrix.chip }}
working-directory: slave
run: |
Expand All @@ -80,13 +80,13 @@ jobs:
--flash-mode dio --flash-size 4MB --flash-freq 80m \
${{ matrix.merge_args }}
shasum -a 256 build/${{ matrix.short }}_slave_merged.bin
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ matrix.short }}_slave_merged
path: slave/build/${{ matrix.short }}_slave_merged.bin
retention-days: 90
- name: attach to release (tags only)
if: github.event_name == 'release'
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: slave/build/${{ matrix.short }}_slave_merged.bin
Loading