test add tag CI #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout pixie-firmware | |
uses: actions/checkout@v3 | |
with: | |
repository: yuetloo/pixie-firmware | |
path: pixie-firmware | |
ref: v0.0.1 | |
- name: Verify user | |
run: echo $UID | |
- name: Build pixie-firmware using Docker | |
run: | | |
cd pixie-firmware | |
docker run --rm -v $PWD:/project -w /project -u $UID -e HOME=/tmp espressif/idf idf.py build | |
- name: Verify assets | |
run: | | |
ls -l ${{ github.workspace }}/pixie-firmware/build/pixie.bin | |
ls -l ${{ github.workspace }}/pixie-firmware/build/bootloader/bootloader.bin | |
ls -l ${{ github.workspace }}/pixie-firmware/build/partition_table/partition-table.bin | |