Skip to content

Commit 277d622

Browse files
committed
Upading ESP32 IDF version
1 parent cf51da2 commit 277d622

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/c-cpp.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ jobs:
2525
sudo apt install -y cppcheck cpputest doxygen avr-libc gcc-avr graphviz
2626
sudo pip3 install cpp-coveralls
2727
pip3 install --user cpp-coveralls
28-
28+
2929
# Runs a set of commands using the runners shell
3030
- name: Building documentation
3131
run: |
3232
make docs 1> /dev/null
33-
33+
3434
#
3535
- name: Building via gcc and running unit tests
3636
run: |
3737
make ARCH=linux EXTRA_CPPFLAGS="--coverage" SDL_EMULATION=y check
3838
make clean
3939
make ARCH=linux EXTRA_CPPFLAGS="--coverage" coverage
40-
40+
4141
- name: Upload coverage statistics
4242
uses: coverallsapp/github-action@master
4343
with:
@@ -48,13 +48,13 @@ jobs:
4848
# echo -e "service_name: circle-ci\n" > .coveralls.yml \
4949
# && TRAVIS_JOB_ID="#${GITHUB_RUN_NUMBER}" COVERALLS_REPO_TOKEN=4Ia7t9YDo22zQcFEnMYLh1tiWCRlBJlhk coveralls -b . \
5050
# --exclude docs --exclude extra --exclude unittest --exclude bld --exclude tools --exclude examples --gcov-options '\-lp'
51-
51+
5252
- name: Building via clang
5353
run: |
5454
make clean
5555
CPPFLAGS="-I/usr/include/SDL2" CC=clang CXX=clang++ LD=clang++ make ARCH=linux SDL_EMULATION=y check
5656
make cppcheck
57-
57+
5858
- name: Building for AVR
5959
run: |
6060
make clean

.travis/setup_esp_build_env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ else
88
#
99
mkdir -p ~/esp
1010
# Switching to 4.3 version, since v5.0-dev doesn't support Makefiles anymore
11-
git clone -b v4.3 --recursive https://github.com/espressif/esp-idf.git ~/esp/esp-idf
11+
git clone -b v4.4.7 --recursive https://github.com/espressif/esp-idf.git ~/esp/esp-idf
1212
# git clone --recursive https://github.com/espressif/esp-idf.git ~/esp/esp-idf
1313
fi
1414

0 commit comments

Comments
 (0)