diff options
author | Fabien Poussin <fabien.poussin@gmail.com> | 2019-03-06 22:40:54 +0100 |
---|---|---|
committer | Fabien Poussin <fabien.poussin@gmail.com> | 2019-03-06 22:40:54 +0100 |
commit | c35f46b2c522c0e6c607fa1a43e0661eeed0004d (patch) | |
tree | 6392cf637ed693eaade197247cbdfb12c6a2730d /Jenkinsfile | |
parent | ce4673522bd881f774bee686f0cfc0a313ed69a2 (diff) | |
download | ChibiOS-Contrib-c35f46b2c522c0e6c607fa1a43e0661eeed0004d.tar.gz ChibiOS-Contrib-c35f46b2c522c0e6c607fa1a43e0661eeed0004d.tar.bz2 ChibiOS-Contrib-c35f46b2c522c0e6c607fa1a43e0661eeed0004d.zip |
Added Jenkinsfile
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index f7f57d1..10d1a1f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,7 @@ pipeline { } steps { - ws(dir: '$HOME/workspaces/ChibiOS/Contrib') { + ws(dir: '$HOME/workspace/ChibiOS/Contrib') { sh '''git clone -b stable_19.1.x --single-branch https://github.com/ChibiOS/ChibiOS.git $WORKSPACE/../ChibiOS-RT bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/STM32/''' } @@ -37,7 +37,7 @@ bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/STM32/''' } steps { - ws(dir: '$HOME/workspaces/ChibiOS/Contrib') { + ws(dir: '$HOME/workspace/ChibiOS/Contrib') { sh '''git clone -b stable_19.1.x --single-branch https://github.com/ChibiOS/ChibiOS.git $WORKSPACE/../ChibiOS-RT bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/NRF51/''' } @@ -52,7 +52,7 @@ bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/NRF51/''' } steps { - ws(dir: '$HOME/workspaces/ChibiOS/Contrib') { + ws(dir: '$HOME/workspace/ChibiOS/Contrib') { sh '''git clone -b stable_19.1.x --single-branch https://github.com/ChibiOS/ChibiOS.git $WORKSPACE/../ChibiOS-RT bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/NRF52/''' } @@ -67,7 +67,7 @@ bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/NRF52/''' } steps { - ws(dir: '$HOME/workspaces/ChibiOS/Contrib') { + ws(dir: '$HOME/workspace/ChibiOS/Contrib') { sh '''git clone -b stable_19.1.x --single-branch https://github.com/ChibiOS/ChibiOS.git $WORKSPACE/../ChibiOS-RT bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/TIVA/''' } @@ -82,7 +82,7 @@ bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/TIVA/''' } steps { - ws(dir: '$HOME/workspaces/ChibiOS/Contrib') { + ws(dir: '$HOME/workspace/ChibiOS/Contrib') { sh '''git clone -b stable_19.1.x --single-branch https://github.com/ChibiOS/ChibiOS.git $WORKSPACE/../ChibiOS-RT bash $WORKSPACE/tools/chbuild.sh $WORKSPACE/testhal/KINETIS/''' } |