Skip to content

Commit

Permalink
Fixing CI-configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
lexus2k committed Nov 28, 2021
1 parent a91a1fe commit 1e1f8f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
- save_cache:
key: ESP32_SDK
paths:
- /home/travis/esp
- /home/travis/.espressif
- ~/esp
- ~/.espressif
- run:
name: Building ESP32 code
command: |
Expand Down
4 changes: 3 additions & 1 deletion .travis/setup_esp_build_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ else
# echo "Installing packages..."
# sudo apt-get install 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
#
# Fixing version to v4.3 since v5.0 doesn't support Makefiles anymore
mkdir -p ~/esp
git clone --recursive https://github.com/espressif/esp-idf.git ~/esp/esp-idf
git clone -b v4.3 --recursive https://github.com/espressif/esp-idf.git ~/esp/esp-idf
# git clone --recursive https://github.com/espressif/esp-idf.git ~/esp/esp-idf
fi

cd ~/esp/esp-idf
Expand Down

0 comments on commit 1e1f8f6

Please sign in to comment.