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

Commit

Permalink
Updated Jenkinsfile
Browse files Browse the repository at this point in the history
Use pycom-esp-idf commit 4eab4e1
  • Loading branch information
Xykon committed Jun 1, 2018
1 parent 13aa72d commit 046b350
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ node {
stage('Checkout') {
checkout scm
sh 'rm -rf esp-idf'
sh 'git clone --depth=1 --recursive -b master https://github.com/pycom/pycom-esp-idf.git esp-idf'
sh 'git clone --recursive -b master https://github.com/pycom/pycom-esp-idf.git esp-idf'
sh 'git -C esp-idf checkout 4eab4e1b0e47c73b858c6b29d357f3d30a69c074'
sh 'git -C esp-idf submodule update'
}

PYCOM_VERSION=get_version()
Expand Down

1 comment on commit 046b350

@robert-hh
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's what I noticed too, that the latest update of pycom- esp-idf breaks the build process. Having previous experience I had memorized the latest working tag, the one I see in you merge: 4eab4e1

Please sign in to comment.