Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jocover authored Jan 19, 2024
1 parent 0e3bfb4 commit 11f9608
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI
on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
targets: [esp32s2, esp32s3]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: ESP-IDF Build
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.1.2
target: ${{ matrix.targets }}
- name: Package binaries
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.targets }}_binaries
path: |
build/esp32_u2f.bin
build/partition_table/partition-table.bin
build/bootloader/bootloader.bin

0 comments on commit 11f9608

Please sign in to comment.