Skip to content

Commit

Permalink
Fixed the LKM Jenkinsfile (#20)
Browse files Browse the repository at this point in the history
* Testing Jenkins

* Jenkinsfile debugging

* More Jenkinsfile debugging

* More Jenkinsfile debugging

* More Jenkinsfile debugging

* Moved the clean up outside parallel

* Removed debug statements

* More Jenkinsfile debugging

* Actually merged file now

* Jenkinsfile syntax fix

Co-authored-by: Dylan Wickham <[email protected]>
  • Loading branch information
dack-fe and fe-wickham authored Jan 8, 2021
1 parent a614fbd commit 6d1dd45
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions jenkins_build_lkms/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ pipeline
steps
{ dir("linux-socfpga")
{
sh 'make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- openspeech_defconfig'
sh 'make prepare ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-'
sh 'make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- openspeech_defconfig;'
sh 'make prepare ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-;'
}
}
}
Expand All @@ -33,7 +33,7 @@ pipeline
{
steps
{ dir("ad1939")
{
{
sh 'make;'
archiveArtifacts artifacts: '*.ko', fingerprint: true
}
Expand Down Expand Up @@ -69,18 +69,18 @@ pipeline
}
}
}
stage('Cleanup')
{
steps
{
deleteDir()
dir("${workspace}@tmp") {
deleteDir()
}
}
}
}
}
stage('Cleanup')
{
steps
{
deleteDir()
dir("${workspace}@tmp") {
deleteDir()
}
}
}
}
}
}
Expand Down

0 comments on commit 6d1dd45

Please sign in to comment.