Browse Source

Update travis config to use Python 3.8.1.

main
David Antliff 6 years ago
parent
commit
8d61b4153a
  1. 18
      .travis.yml

18
.travis.yml

@ -1,14 +1,6 @@
sudo: false dist: bionic
language: bash language: python
os: python: "3.8"
- linux
addons:
apt:
packages:
- gperf
- python
- python-serial
before_install: before_install:
# Save path to the git respository # Save path to the git respository
@ -29,11 +21,11 @@ install:
# Make xtensa-esp32-elf available for all terminal sessions # Make xtensa-esp32-elf available for all terminal sessions
- export PATH=$PATH:$HOME/esp/xtensa-esp32-elf/bin - export PATH=$PATH:$HOME/esp/xtensa-esp32-elf/bin
# Get ESP-IDF from github # Get ESP-IDF from github
- git clone --recursive --branch release/v3.3 --single-branch --shallow-submodules https://github.com/espressif/esp-idf.git - git clone --recursive --branch v3.3 --single-branch --shallow-submodules https://github.com/espressif/esp-idf.git
# Set the path to ESP-IDF directory # Set the path to ESP-IDF directory
- export IDF_PATH=~/esp/esp-idf - export IDF_PATH=~/esp/esp-idf
# Install python dependencies # Install python dependencies
- pip install --user -r $IDF_PATH/requirements.txt - pip install --requirement $IDF_PATH/requirements.txt
script: script:
# Build project within the original repository # Build project within the original repository

Loading…
Cancel
Save