forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[jenkins] Add Marvell ARMv7 armhf SOC support (sonic-net#194)
This commit adds Sonic Jenkins build support for platforms based on the Marvell ARMv7 32-bit (armhf) SOC and a Marvell Datapath ASIC.
- Loading branch information
1 parent
8db8b07
commit 148ba9c
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
jenkins/marvell-armhf/buildimage-mrvl-armhf-all/Jenkinsfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
pipeline { | ||
agent { node { label 'jenkins-workers-slow' } } | ||
|
||
options { | ||
buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '30')) | ||
} | ||
|
||
environment { | ||
SONIC_TEAM_WEBHOOK = credentials('public-jenkins-builder') | ||
} | ||
|
||
triggers { | ||
pollSCM('@midnight') | ||
} | ||
|
||
stages { | ||
stage('Prepare') { | ||
steps { | ||
step([$class: 'WsCleanup']) | ||
checkout([$class: 'GitSCM', | ||
branches: [[name: 'refs/heads/master']], | ||
extensions: [[$class: 'SubmoduleOption', | ||
disableSubmodules: false, | ||
parentCredentials: false, | ||
recursiveSubmodules: true, | ||
reference: '', | ||
trackingSubmodules: false], | ||
[$class: 'LocalBranch', | ||
localBranch: "**"]], | ||
userRemoteConfigs: [[url: 'http://github.com/Azure/sonic-buildimage']]]) | ||
} | ||
} | ||
|
||
stage('Build') { | ||
steps { | ||
sh '''#!/bin/bash -xe | ||
git submodule foreach --recursive '[ -f .git ] && echo "gitdir: $(realpath --relative-to=. $(cut -d" " -f2 .git))" > .git' | ||
make configure PLATFORM=marvell-armhf PLATFORM_ARCH=armhf | ||
make SONIC_CONFIG_BUILD_JOBS=1 INSTALL_DEBUG_TOOLS=y target/sonic-marvell-armhf.bin | ||
mv target/sonic-marvell-armhf.bin target/sonic-marvell-armhf-dbg.bin | ||
make SONIC_CONFIG_BUILD_JOBS=1 target/sonic-marvell-armhf.bin | ||
''' | ||
} | ||
} | ||
|
||
} | ||
post { | ||
|
||
success { | ||
archiveArtifacts(artifacts: 'target/**') | ||
} | ||
fixed { | ||
slackSend(color:'#00FF00', message: "Build job back to normal: ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)") | ||
office365ConnectorSend(webhookUrl: "${env.SONIC_TEAM_WEBHOOK}") | ||
} | ||
regression { | ||
slackSend(color:'#FF0000', message: "Build job Regression: ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)") | ||
office365ConnectorSend(webhookUrl: "${env.SONIC_TEAM_WEBHOOK}") | ||
} | ||
cleanup { | ||
cleanWs(disableDeferredWipeout: false, deleteDirs: true, notFailBuild: true) | ||
} | ||
} | ||
} |