forked from Tencent/ncnn
-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (70 loc) · 2 KB
/
esp32.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
name: ESP32
on:
push:
paths:
- '.github/workflows/esp32.yml'
- 'CMakeLists.txt'
- 'cmake/**'
- 'src/*'
- 'src/layer/*'
- 'src/layer/x86/**'
- 'src/layer/vulkan/**'
- 'tests/**'
pull_request:
branches: [master]
paths:
- '.github/workflows/esp32.yml'
- 'CMakeLists.txt'
- 'cmake/**'
- 'src/*'
- 'src/layer/*'
- 'src/layer/x86/**'
- 'src/layer/vulkan/**'
- 'tests/**'
workflow_dispatch:
concurrency:
group: esp32-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: ESP32
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build ccache
- name: Install build-essential
run: sudo apt-get install -y build-essential
- name: Cache-ESP-IDF
id: Cache-ESP-IDF
uses: actions/cache@v2
with:
path: esp-idf-install
key: esp-idf-${{ runner.os }}-install
- name: Clone and Install ESP-IDF
if: steps.Cache-ESP-IDF.outputs.cache-hit != 'true'
run: |
git clone https://github.com/espressif/esp-idf
cd esp-idf
git submodule update --init --recursive
./install.sh
- name: Set environment and build NCNN for ESP32
run: |
source esp-idf/export.sh
echo "IDF_PATH=$IDF_PATH" >> $GITHUB_ENV
echo "${IDF_PATH}/tools" >> $GITHUB_PATH
echo "${IDF_PATH}/components" >> $GITHUB_PATH
mkdir -p build-esp32 && cd build-esp32
cmake -DCMAKE_TOOLCHAIN_FILE="../toolchains/esp32.toolchain.cmake" -DCMAKE_BUILD_TYPE=Release -DNCNN_BUILD_EXAMPLES=OFF ..
make -j4
make install