File tree 5 files changed +76
-2
lines changed 5 files changed +76
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : ESP32 Arduino Libs CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ - release/*
8
+ pull_request :
9
+
10
+ jobs :
11
+
12
+ build-libs :
13
+ name : Build Arduino Libs
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v1
17
+ - name : Install dependencies
18
+ run : sudo apt-get install git wget curl libssl-dev libncurses-dev flex bison gperf python python-pip python-setuptools python-serial python-click python-cryptography python-future python-pyparsing python-pyelftools cmake ninja-build ccache
19
+ - name : Install Python Wheel
20
+ run : pip install wheel
21
+ - name : Build Arduino Libs
22
+ env :
23
+ TRAVIS_BUILD_DIR : ${{ github.workspace }}
24
+ run : bash $TRAVIS_BUILD_DIR/build.sh
Original file line number Diff line number Diff line change
1
+ sudo : false
2
+ language : python
3
+ os :
4
+ - linux
5
+
6
+ git :
7
+ depth : false
8
+
9
+ addons :
10
+ apt :
11
+ packages :
12
+ - git
13
+ - wget
14
+ - curl
15
+ - libssl-dev
16
+ - libncurses-dev
17
+ - flex
18
+ - bison
19
+ - gperf
20
+ - python
21
+ - python-pip
22
+ - python-setuptools
23
+ - python-serial
24
+ - python-click
25
+ - python-cryptography
26
+ - python-future
27
+ - python-pyparsing
28
+ - python-pyelftools
29
+ - cmake
30
+ - ninja-build
31
+ - ccache
32
+
33
+ stages :
34
+ - build
35
+
36
+ jobs :
37
+ include :
38
+
39
+ - name : " Build Arduino Libs"
40
+ if : tag IS blank AND (type = pull_request OR (type = push AND branch = master))
41
+ stage : build
42
+ script : bash $TRAVIS_BUILD_DIR/build.sh
Original file line number Diff line number Diff line change 1
- #ESP32 Arduino Lib Builder
1
+ #ESP32 Arduino Lib Builder [ ![ Build Status ] ( https://travis-ci.org/espressif/esp32-arduino-lib-builder.svg?branch=master )] ( https://travis-ci.org/espressif/esp32-arduino-lib-builder )
2
2
3
3
This repository contains the scripts that produce the libraries included with esp32-arduino.
4
4
Original file line number Diff line number Diff line change 2
2
# Automatically generated file; DO NOT EDIT.
3
3
# Espressif IoT Development Framework Configuration
4
4
#
5
+ CONFIG_IDF_FIRMWARE_CHIP_ID=0x0000
5
6
6
7
#
7
8
# SDK tool configuration
@@ -272,6 +273,12 @@ CONFIG_FRMN2C_QUANT=
272
273
#
273
274
# ESP32-specific
274
275
#
276
+ CONFIG_ESP32_REV_MIN_0=y
277
+ CONFIG_ESP32_REV_MIN_1=
278
+ CONFIG_ESP32_REV_MIN_2=
279
+ CONFIG_ESP32_REV_MIN_3=
280
+ CONFIG_ESP32_REV_MIN=0
281
+ CONFIG_ESP32_DPORT_WORKAROUND=y
275
282
CONFIG_ESP32_DEFAULT_CPU_FREQ_80=
276
283
CONFIG_ESP32_DEFAULT_CPU_FREQ_160=y
277
284
CONFIG_ESP32_DEFAULT_CPU_FREQ_240=
@@ -386,6 +393,7 @@ CONFIG_DISABLE_BASIC_ROM_CONSOLE=
386
393
CONFIG_ESP_TIMER_PROFILING=
387
394
CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS=
388
395
CONFIG_ESP_ERR_TO_NAME_LOOKUP=y
396
+ CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL=5
389
397
390
398
#
391
399
# Wi-Fi
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if [ -z "$IDF_PATH" ]; then
16
16
cd $IDF_PATH
17
17
git fetch origin && git pull origin $IDF_BRANCH
18
18
git submodule update --init --recursive
19
- python -m pip install --user - r requirements.txt
19
+ python -m pip install -r requirements.txt
20
20
cd " $AR_ROOT "
21
21
fi
22
22
You can’t perform that action at this time.
0 commit comments