Jenkinsfile cleanup

This commit is contained in:
Fabien Poussin 2020-12-06 00:59:01 +01:00 committed by GitHub
parent 9cd5012f22
commit 057d889384
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 73 additions and 201 deletions

230
Jenkinsfile vendored
View File

@ -1,214 +1,86 @@
pipeline { pipeline {
agent any agent {
docker { image 'fpoussin/jenkins:ubuntu-18.04-chibios' }
}
stages { stages {
stage('Prepare ChibiOS') { stage('Prepare ChibiOS') {
agent {
docker {
image 'fpoussin/jenkins:ubuntu-18.04'
}
}
steps { steps {
sh '''echo $CH_BRANCH sh '''
echo $CH_PATH echo $CH_BRANCH
echo $CHC_PATH echo $CH_PATH
echo $CHC_PATH
exit 0''' exit 0
'''
sh '''
arm-none-eabi-gcc -v
cd $WORKSPACE/ext
for i in *.7z; do 7z x -y $i; done
cd $WORKSPACE
rm -rf $CH_PATH
git clone /var/lib/git/ChibiOS $CH_PATH
cd $CH_PATH
git remote set-url origin https://github.com/ChibiOS/ChibiOS.git
git fetch --all
git checkout -b $CH_BRANCH origin/$CH_BRANCH
git pull --rebase origin $CH_BRANCH
cd ext
for i in *.7z; do 7z x -y $i; done
'''
} }
} }
stage('Build Platforms') {
parallel {
stage('Build STM32') { stage('Build STM32') {
agent {
docker {
image 'fpoussin/jenkins:ubuntu-18.04-chibios'
}
}
steps { steps {
sh '''arm-none-eabi-gcc -v sh '''
./tools/chbuild.sh ./testhal/STM32/
cd $WORKSPACE/ext ./tools/chbuild.sh ./demos/STM32/
for i in *.7z; do 7z x -y $i; done '''
cd $WORKSPACE
rm -rf $CH_PATH
git clone /var/lib/git/ChibiOS $CH_PATH
cd $CH_PATH
git remote set-url origin https://github.com/ChibiOS/ChibiOS.git
git fetch --all
git checkout -b $CH_BRANCH origin/$CH_BRANCH
git pull --rebase origin $CH_BRANCH
cd ext
for i in *.7z; do 7z x -y $i; done'''
sh '''export CH_PATH=$WORKSPACE/ChibiOS
export CHC_PATH=$WORKSPACE
./tools/chbuild.sh ./testhal/STM32/
./tools/chbuild.sh ./demos/STM32/'''
} }
} }
stage('Build NRF51') { stage('Build NRF51') {
agent {
docker {
image 'fpoussin/jenkins:ubuntu-18.04-chibios'
}
}
steps { steps {
sh '''arm-none-eabi-gcc -v sh '''
./tools/chbuild.sh ./testhal/NRF51/
cd $WORKSPACE/ext ./tools/chbuild.sh ./demos/NRF51/
for i in *.7z; do 7z x -y $i; done '''
cd $WORKSPACE
rm -rf $CH_PATH
git clone /var/lib/git/ChibiOS $CH_PATH
cd $CH_PATH
git remote set-url origin https://github.com/ChibiOS/ChibiOS.git
git fetch --all
git checkout -b $CH_BRANCH origin/$CH_BRANCH
git pull --rebase origin $CH_BRANCH
cd ext
for i in *.7z; do 7z x -y $i; done'''
sh '''export CH_PATH=$WORKSPACE/ChibiOS
export CHC_PATH=$WORKSPACE
./tools/chbuild.sh ./testhal/NRF51/
./tools/chbuild.sh ./demos/NRF51/
'''
} }
} }
stage('Build NRF52') { stage('Build NRF52') {
agent {
docker {
image 'fpoussin/jenkins:ubuntu-18.04-chibios'
}
}
steps { steps {
sh '''arm-none-eabi-gcc -v sh '''
./tools/chbuild.sh ./testhal/NRF52/
cd $WORKSPACE/ext ./tools/chbuild.sh ./demos/NRF52/
for i in *.7z; do 7z x -y $i; done '''
cd $WORKSPACE
rm -rf $CH_PATH
git clone /var/lib/git/ChibiOS $CH_PATH
cd $CH_PATH
git remote set-url origin https://github.com/ChibiOS/ChibiOS.git
git fetch --all
git checkout -b $CH_BRANCH origin/$CH_BRANCH
git pull --rebase origin $CH_BRANCH
cd ext
for i in *.7z; do 7z x -y $i; done'''
sh '''export CH_PATH=$WORKSPACE/ChibiOS
export CHC_PATH=$WORKSPACE
./tools/chbuild.sh ./testhal/NRF52/
./tools/chbuild.sh ./demos/NRF52/
'''
} }
} }
stage('Build Kinetis') { stage('Build Kinetis') {
agent {
docker {
image 'fpoussin/jenkins:ubuntu-18.04-chibios'
}
}
steps { steps {
sh '''arm-none-eabi-gcc -v sh '''
./tools/chbuild.sh ./testhal/KINETIS/
cd $WORKSPACE/ext ./tools/chbuild.sh ./demos/KINETIS/
for i in *.7z; do 7z x -y $i; done '''
cd $WORKSPACE
rm -rf $CH_PATH
git clone /var/lib/git/ChibiOS $CH_PATH
cd $CH_PATH
git remote set-url origin https://github.com/ChibiOS/ChibiOS.git
git fetch --all
git checkout -b $CH_BRANCH origin/$CH_BRANCH
git pull --rebase origin $CH_BRANCH
cd ext
for i in *.7z; do 7z x -y $i; done'''
sh '''export CH_PATH=$WORKSPACE/ChibiOS
export CHC_PATH=$WORKSPACE
./tools/chbuild.sh ./testhal/KINETIS/
./tools/chbuild.sh ./demos/KINETIS/
'''
} }
} }
stage('Build LPC') { stage('Build LPC') {
agent {
docker {
image 'fpoussin/jenkins:ubuntu-18.04-chibios'
}
}
steps { steps {
sh '''arm-none-eabi-gcc -v sh '''
cd $WORKSPACE/ext ./tools/chbuild.sh ./demos/LPC/
for i in *.7z; do 7z x -y $i; done '''
cd $WORKSPACE
rm -rf $CH_PATH
git clone /var/lib/git/ChibiOS $CH_PATH
cd $CH_PATH
git remote set-url origin https://github.com/ChibiOS/ChibiOS.git
git fetch --all
git checkout -b $CH_BRANCH origin/$CH_BRANCH
git pull --rebase origin $CH_BRANCH
cd ext
for i in *.7z; do 7z x -y $i; done'''
sh '''export CH_PATH=$WORKSPACE/ChibiOS
export CHC_PATH=$WORKSPACE
./tools/chbuild.sh ./demos/LPC/
'''
} }
} }
stage('Build NUMICRO') { stage('Build NUMICRO') {
agent {
docker {
image 'fpoussin/jenkins:ubuntu-18.04-chibios'
}
}
steps { steps {
sh '''arm-none-eabi-gcc -v sh '''
cd $WORKSPACE/ext ./tools/chbuild.sh ./testhal/NUMICRO/
for i in *.7z; do 7z x -y $i; done ./tools/chbuild.sh ./demos/NUMICRO/
cd $WORKSPACE '''
rm -rf $CH_PATH
git clone /var/lib/git/ChibiOS $CH_PATH
cd $CH_PATH
git remote set-url origin https://github.com/ChibiOS/ChibiOS.git
git fetch --all
git checkout -b $CH_BRANCH origin/$CH_BRANCH
git pull --rebase origin $CH_BRANCH
cd ext
for i in *.7z; do 7z x -y $i; done'''
sh '''export CH_PATH=$WORKSPACE/ChibiOS
export CHC_PATH=$WORKSPACE
./tools/chbuild.sh ./testhal/NUMICRO/
./tools/chbuild.sh ./demos/NUMICRO/
'''
} }
} }
} }
}
}
environment { environment {
CH_BRANCH = 'stable_20.3.x' CH_BRANCH = 'stable_20.3.x'
CH_PATH = 'ChibiOS' CH_PATH = 'ChibiOS'