26 lines
612 B
YAML
26 lines
612 B
YAML
name: Run test build with esp-idf-rust image from DockerHub
|
|
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'recursive'
|
|
- name: esp-idf build
|
|
uses: espressif/esp-idf-ci-action@rust-latest
|
|
- name: Archive binaries
|
|
run: |
|
|
mkdir binaries
|
|
cp build/*.bin build/bootloader/*.bin build/partition_table/*.bin support/esptool/* binaries/
|
|
- name: Archive artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: binaries
|
|
path: binaries
|