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

Commit d85d5b7

Browse files
committed
Jenkins: remove --depth=1
with depth=1, we cannot also do a git checkout IDF_HASH the speed difference between --depth=1 and not having it is 1m52 vs 1m58, so it never helped a lot anyway
1 parent 26adae2 commit d85d5b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ node {
1212
stage('Checkout') {
1313
checkout scm
1414
sh 'rm -rf esp-idf'
15-
sh 'git clone --depth=1 --recursive -b idf_v3.3.1 https://github.com/pycom/pycom-esp-idf.git esp-idf'
15+
sh 'git clone --recursive -b idf_v3.3.1 https://github.com/pycom/pycom-esp-idf.git esp-idf'
1616
}
1717

1818
stage('git-tag') {

0 commit comments

Comments
 (0)