Skip to content
Merged
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
59 changes: 28 additions & 31 deletions .github/workflows/esp32-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@

name: ESP32 Builds

on:
push: []
pull_request: []
on: [push, pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.ref != 'refs/heads/main' && github.ref || github.run_id }}
Expand All @@ -24,33 +22,32 @@ jobs:

matrix:
idf-version:
- '4.4.6'
- '5.0.6'
- '5.1.3'
- "5.4.3"
- "5.5.2"

steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
repository: 'atomvm/AtomVM'
ref: 'release-0.6'

- name: Checkout repo
uses: actions/checkout@v4
with:
path: './src/platforms/esp32/components/atomgl/'

- name: Build with idf.py
shell: bash
working-directory: ./src/platforms/esp32/
run: |
. $IDF_PATH/export.sh
idf.py reconfigure
idf.py build
idf.py size
- name: Print component size info with idf.py
shell: bash
working-directory: ./src/platforms/esp32/
run: |
. $IDF_PATH/export.sh
idf.py size-components
- name: Checkout repo
uses: actions/checkout@v4
with:
repository: "atomvm/AtomVM"
ref: "release-0.6"

- name: Checkout repo
uses: actions/checkout@v4
with:
path: "./src/platforms/esp32/components/atomgl/"

- name: Build with idf.py
shell: bash
working-directory: ./src/platforms/esp32/
run: |
. $IDF_PATH/export.sh
idf.py reconfigure
idf.py build
idf.py size
- name: Print component size info with idf.py
shell: bash
working-directory: ./src/platforms/esp32/
run: |
. $IDF_PATH/export.sh
idf.py size-components