Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added base device tree source for audiomini #18

Draft
wants to merge 5 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
pipeline
{
agent none
stages
{
stage ('Ubuntu 20.04')
{
agent {label 'Ubuntu_20.04.1'}
stages
{
stage('Check Component Library Repo')
{
parallel
{
stage('Build Base Device Tree')
{
when {
anyOf {
changeset "dts/**/*"
}
}
steps
{
build job: 'Frost Build Base Device Tree'
}
}
}
}
stage('Cleanup')
{
steps
{
deleteDir()
dir("${workspace}@tmp") {
deleteDir()
}
}
}
}
}
}
}
44 changes: 44 additions & 0 deletions dts/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
pipeline
{
agent none
stages
{
stage ('Ubuntu_20.04.1')
{
agent {label 'Ubuntu_20.04.1'}
stages
{
stage('Build Base Device Tree Blob')
{
steps
{
dir("dts")
{
sh 'make'
}
}
}
stage('Archive DTB')
{
steps
{
dir("dts")
{
archiveArtifacts artifacts: 'audiomini.dtb', fingerprint: true
}
}
}
stage('Cleanup')
{
steps
{
deleteDir()
dir("${workspace}@tmp") {
deleteDir()
}
}
}
}
}
}
}
6 changes: 6 additions & 0 deletions dts/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
default: audiomini

audiomini:
dtc -I dts -O dtb -o audiomini.dtb audiomini.dts
clean:
rm -f audiomini.dtb
Loading