-
Notifications
You must be signed in to change notification settings - Fork 0
159 lines (145 loc) · 4.77 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# SPDX-License-Identifier: MIT
name: Build
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
soc: ["esp32", "esp32c3", "esp32s2", "esp32s3", "esp32c6"]
idf-version:
- 'v5.1.3'
- 'v5.2.1'
container: espressif/idf:${{ matrix.idf-version }}
steps:
- name: Checkout AtomVM
uses: actions/checkout@v4
with:
repository: atomvm/AtomVM
path: AtomVM
- name: Checkout atomvm_esp_adf
uses: actions/checkout@v4
with:
path: AtomVM/src/platforms/esp32/components/atomvm_esp_adf/
- name: Checkout atomvm_esp_adf submodules
shell: bash
working-directory: AtomVM/src/platforms/esp32/components/atomvm_esp_adf/
run: |
git submodule update --init components/esp-adf
cd components/esp-adf
git submodule update --init components/esp-adf-libs/
- name: Install dependencies to build host AtomVM
run: |
set -eu
apt update
DEBIAN_FRONTEND=noninteractive apt install -y -q \
doxygen erlang-base erlang-dialyzer elixir \
gcc g++ zlib1g-dev libmbedtls-dev make cmake
- name: Build AtomVM libraries
shell: bash
working-directory: AtomVM/
run: |
mkdir build
cd build
cmake ..
cd libs
make
- name: Build ${{ matrix.soc }} binary with idf.py
shell: bash
working-directory: AtomVM/src/platforms/esp32/
run: |
cp sdkconfig.release-defaults sdkconfig.defaults
rm -rf build
. $IDF_PATH/export.sh
idf.py set-target ${{ matrix.soc }}
echo CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY=y >> sdkconfig
idf.py build -DCONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY=y
- name: Run tests using qemu
shell: bash
if: matrix.soc == 'esp32' || matrix.soc == 'esp32c3'
working-directory: AtomVM/src/platforms/esp32/components/atomvm_esp_adf/tests/
run: |
# Some images have erlang-22, so latest compatible rebar is 3.18.0
wget https://github.com/erlang/rebar3/releases/download/3.18.0/rebar3
chmod +x rebar3
DEBIAN_FRONTEND=noninteractive apt install -y -q erlang erlang-eunit
./rebar3 atomvm packbeam
. $IDF_PATH/export.sh
pip install -U pytest-embedded pytest-embedded-qemu
pytest --target=${{ matrix.soc }}
- name: "Create a ${{ matrix.soc }} image"
working-directory: AtomVM/src/platforms/esp32/build
run: |
./mkimage.sh
mv atomvm-${{ matrix.soc }}.img atomvm-esp-adf-${{ matrix.soc }}-${{ matrix.idf-version }}.img
- name: "Upload ${{ matrix.soc }} artifacts"
uses: actions/upload-artifact@v4
with:
name: atomvm-esp-adf-${{ matrix.soc }}-${{ matrix.idf-version }}-image
path: AtomVM/src/platforms/esp32/build/atomvm-esp-adf-${{ matrix.soc }}-${{ matrix.idf-version }}.img
if-no-files-found: error
build-examples:
runs-on: ubuntu-latest
container: erlang:26
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build examples
run: |
cd examples
for conf in */rebar.config ; do
example_dir=`dirname ${conf}`
cd ${example_dir}
rebar3 atomvm packbeam
cd ..
done
build-doc:
runs-on: ubuntu-latest
container: erlang:26
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Build ex_doc
run: |
rebar3 as doc ex_doc
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: doc
clang-format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install clang-format
run: |
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
- name: Install run-clang-format
run: |
curl -sSfL https://raw.githubusercontent.com/Sarcasm/run-clang-format/master/run-clang-format.py -o run-clang-format
chmod +x run-clang-format
- name: Check format with clang-format
run: |
./run-clang-format --style=file -r nifs/
erlfmt:
runs-on: ubuntu-latest
container: erlang:26
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout erlfmt
run: |
cd ..
git clone --depth 1 -b v1.3.0 https://github.com/WhatsApp/erlfmt.git
cd erlfmt
rebar3 as release escriptize
- name: Check format with erlfmt
run: |
find . -name *.erl | xargs ../erlfmt/_build/release/bin/erlfmt -c