Skip to content

Commit 10fa0b2

Browse files
committed
Merge pull request #9 from petermm/fix-ci-not-running
Fix CI not running
2 parents 762ee08 + b6798b4 commit 10fa0b2

1 file changed

Lines changed: 28 additions & 31 deletions

File tree

.github/workflows/esp32-build.yaml

Lines changed: 28 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66

77
name: ESP32 Builds
88

9-
on:
10-
push: []
11-
pull_request: []
9+
on: [push, pull_request]
1210

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

2523
matrix:
2624
idf-version:
27-
- '4.4.6'
28-
- '5.0.6'
29-
- '5.1.3'
25+
- "5.4.3"
26+
- "5.5.2"
3027

3128
steps:
32-
- name: Checkout repo
33-
uses: actions/checkout@v4
34-
with:
35-
repository: 'atomvm/AtomVM'
36-
ref: 'release-0.6'
37-
38-
- name: Checkout repo
39-
uses: actions/checkout@v4
40-
with:
41-
path: './src/platforms/esp32/components/atomgl/'
42-
43-
- name: Build with idf.py
44-
shell: bash
45-
working-directory: ./src/platforms/esp32/
46-
run: |
47-
. $IDF_PATH/export.sh
48-
idf.py reconfigure
49-
idf.py build
50-
idf.py size
51-
- name: Print component size info with idf.py
52-
shell: bash
53-
working-directory: ./src/platforms/esp32/
54-
run: |
55-
. $IDF_PATH/export.sh
56-
idf.py size-components
29+
- name: Checkout repo
30+
uses: actions/checkout@v4
31+
with:
32+
repository: "atomvm/AtomVM"
33+
ref: "release-0.6"
34+
35+
- name: Checkout repo
36+
uses: actions/checkout@v4
37+
with:
38+
path: "./src/platforms/esp32/components/atomgl/"
39+
40+
- name: Build with idf.py
41+
shell: bash
42+
working-directory: ./src/platforms/esp32/
43+
run: |
44+
. $IDF_PATH/export.sh
45+
idf.py reconfigure
46+
idf.py build
47+
idf.py size
48+
- name: Print component size info with idf.py
49+
shell: bash
50+
working-directory: ./src/platforms/esp32/
51+
run: |
52+
. $IDF_PATH/export.sh
53+
idf.py size-components

0 commit comments

Comments
 (0)