Files

  • Not Found
  • Invalid object requested. SHA must identify a commit or a tree.
Last update 5 years 2 weeks
Files
code
board
.gitignore
.gitmodules
Jenkinsfile
LICENSE
README.md
Jenkinsfile
pipeline { agent { docker { image 'fpoussin/jenkins:ubuntu-18.04-arm' } } stages { stage('submodules') { steps { sh '''git submodule sync git submodule update --init ''' } } stage('build') { steps { sh '''cd $WORKSPACE/code/cm4-dsp-lib make clean make -j $(nproc) cd ..''' sh '''cd $WORKSPACE/code make clean make -j $(nproc)''' } } } }
Report a bug