Files

  • Not Found
  • Invalid object requested. SHA must identify a commit or a tree.
Last update 5 years 1 month
Files
code
board
.gitignore
.gitmodules
Jenkinsfile
LICENSE
README.md
Jenkinsfile
pipeline { agent { docker { image 'fpoussin/jenkins:ubuntu-18.04-chibios' } } stages { stage('Build') { steps { sh '''git config --file=.gitmodules submodule.code/ChibiOS.url /var/lib/git/ChibiOS git submodule sync git submodule update --init || true git checkout .gitmodules git submodule sync git submodule update --init ''' sh '''cd $WORKSPACE/code nice make -j $(nproc)''' } } } }
Report a bug