forked from espressif/esptool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
56 lines (50 loc) · 2 KB
/
.travis.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
language: python
sudo: false
env:
# Downloadable toolchains & SDKs for esp8266 & esp32
#
# Toolchains used for automated builds:
# ESP8266 - prebuilt gcc 4.8.2 from ESP8266 Arduino
# ESP32 - official Espressif toolchain
#
# Note: if these are updated, you need to flush the Travis cache
#
# (esp-idf is downloaded a zip file. It doesn't fully work this way, but
# we're just using it for some header files.)
# Toolchains
ESP8266_TOOLCHAIN_URL="http://arduino.esp8266.com/linux64-xtensa-lx106-elf.tar.gz"
ESP32_TOOLCHAIN_URL="https://dl.espressif.com/dl/xtensa-esp32-elf-linux64-1.22.0-59.tar.gz"
TOOLCHAIN_DIR="${HOME}/toolchain"
ESP8266_BINDIR="${TOOLCHAIN_DIR}/xtensa-lx106-elf/bin"
ESP32_BINDIR="${TOOLCHAIN_DIR}/xtensa-esp32-elf/bin"
SDKS_DIR="${HOME}/sdks"
SDK_PATH="${SDKS_DIR}/ESP8266_NONOS_SDK"
ESP8266_SDK_URL="http://bbs.espressif.com/download/file.php?id=1690"
IDF_PATH="${SDKS_DIR}/esp-idf"
ESP32_IDF_URL="https://github.com/espressif/esp-idf/archive/v1.0.zip"
PATH="${PATH}:${ESP8266_BINDIR}:${ESP32_BINDIR}"
cache:
directories:
- ${TOOLCHAIN_DIR}
- ${SDKS_DIR}
python:
- "2.7"
- "3.4"
- "3.5"
before_install:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then ./.travis_setup_build_env.sh; fi
script:
# test python components (fast)
- python setup.py build
# this is hacky, installing test script deps via pip as need to be in the virtualenv
# but don't count if only in setup.py's .eggs dir, and "setup.py test" integration
# doesn't allow running esptool.py as a script...
- pip install pyserial pyelftools
- python test/test_imagegen.py
- pip install flake8 flake8-future-import # matches tests_require in setup.py, a bit hacky
- python setup.py flake8
- python setup.py install
# build stub (Python 3 only)
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then make -C flasher_stub V=1; fi
# check the just-built stub matches the one in esptool.py
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then cd flasher_stub && python ./compare_stubs.py; fi