Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 1de0363

Browse files
committed
Update Jenkinsfile and Makefile
Update compiler path to use 2020r3 and update Makefile to use latest IDF commit
1 parent 0db5db8 commit 1de0363

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ for (variant in variants_to_build) {
8585
def boardBuild(name, variant, open_thread) {
8686
return {
8787
release_dir = "${JENKINS_HOME}/release/${JOB_NAME}/" + PYCOM_VERSION + "/" + GIT_TAG + "/"
88-
sh '''export PATH=$PATH:/opt/2020r2/xtensa-esp32-elf/bin/;
88+
sh '''export PATH=$PATH:/opt/2020r3/xtensa-esp32-elf/bin/;
8989
export IDF_PATH=${WORKSPACE}/esp-idf;
9090
make -C esp32 clean BOARD=''' + name.toUpperCase() + ' VARIANT=' + variant
9191
sh '''export PATH=$PATH:/opt/2020r2/xtensa-esp32-elf/bin/;

esp32/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ifeq ($(wildcard boards/$(BOARD)/.),)
1414
$(error Invalid BOARD specified)
1515
endif
1616

17-
IDF_HASH=60e3a89
17+
IDF_HASH=d647204
1818
XTENSA_VERSION = "2020r3"
1919

2020
TARGET ?= boot_app

0 commit comments

Comments
 (0)