switch to scarthgap
This commit is contained in:
parent
4330936dc3
commit
6c207b7761
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
.vscode
|
||||
build/cache
|
||||
build/downloads
|
||||
build/tmp
|
||||
build/sstate*
|
||||
build/bitbake*
|
||||
build/conf/*.txt
|
||||
build/conf/templateconf.cfg
|
5
.gitmodules
vendored
5
.gitmodules
vendored
@ -15,5 +15,8 @@
|
||||
url = https://git.iohub.dev/dany/meta-rpi-diya
|
||||
[submodule "meta-wayland"]
|
||||
path = meta-wayland
|
||||
url = https://github.com/MarkusVolk/meta-wayland.git
|
||||
url = https://git.iohub.dev/dany/meta-wayland.git
|
||||
shallow = true
|
||||
[submodule "meta-diya"]
|
||||
path = meta-diya
|
||||
url = https://git.iohub.dev/dany/meta-diya.git
|
||||
|
83
Jenkinsfile
vendored
83
Jenkinsfile
vendored
@ -1,83 +0,0 @@
|
||||
pipeline{
|
||||
agent { node{ label'master' }}
|
||||
options {
|
||||
// Limit build history with buildDiscarder option:
|
||||
// daysToKeepStr: history is only kept up to this many days.
|
||||
// numToKeepStr: only this many build logs are kept.
|
||||
// artifactDaysToKeepStr: artifacts are only kept up to this many days.
|
||||
// artifactNumToKeepStr: only this many builds have their artifacts kept.
|
||||
buildDiscarder(logRotator(numToKeepStr: "1"))
|
||||
// Enable timestamps in build log console
|
||||
timestamps()
|
||||
// Maximum time to run the whole pipeline before canceling it
|
||||
timeout(time: 10, unit: 'HOURS')
|
||||
// Use Jenkins ANSI Color Plugin for log console
|
||||
ansiColor('xterm')
|
||||
// Limit build concurrency to 1 per branch
|
||||
disableConcurrentBuilds()
|
||||
}
|
||||
stages
|
||||
{
|
||||
stage('Build image') {
|
||||
agent {
|
||||
docker {
|
||||
image 'xsangle/ci-yocto:focal'
|
||||
// args '-v /var/jenkins_home/workspace/ant-http:/var/jenkins_home/workspace/ant-http'
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh '''#!/bin/bash
|
||||
printenv
|
||||
# git submodule init
|
||||
git submodule update --init --depth 1
|
||||
cd poky
|
||||
source ./oe-init-build-env ../build
|
||||
cat conf/*.conf
|
||||
# bitbake -c cleanall gcc core-image-base
|
||||
bitbake core-image-base
|
||||
'''
|
||||
}
|
||||
}
|
||||
stage('Build SDK') {
|
||||
agent {
|
||||
docker {
|
||||
image 'xsangle/ci-yocto:focal'
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh '''#!/bin/bash
|
||||
cd poky
|
||||
source ./oe-init-build-env ../build
|
||||
# bitbake core-image-base -c populate_sdk
|
||||
'''
|
||||
}
|
||||
}
|
||||
stage("Publish") {
|
||||
agent { node{ label'workstation' }}
|
||||
steps{
|
||||
sh'''#!/bin/bash
|
||||
export MACHINE="raspberrypi0-2w-64"
|
||||
# copy rootfs
|
||||
export PUBLIC="/home/dany/public/diya-release"
|
||||
cp -L $(ls build/tmp/deploy/images/$MACHINE/core-image-base-$MACHINE-*rootfs.tar.bz2) $PUBLIC/rootfs-$MACHINE.tar.bz2
|
||||
# copy kernels
|
||||
cp -L build/tmp/deploy/images/$MACHINE/Image-$MACHINE.bin $PUBLIC/
|
||||
cp -L build/tmp/deploy/images/$MACHINE/recovery-$MACHINE.cpio.gz $PUBLIC/
|
||||
# copy image
|
||||
cp $(ls build/tmp/deploy/images/$MACHINE/core-image-base-$MACHINE-*rootfs.wic.bz2) $PUBLIC/diya.img.bz2
|
||||
# copy sdk
|
||||
cp -L build/tmp/deploy/sdk/poky-glibc-x86_64-core-image-base-cortexa53-raspberrypi0-2w-64-toolchain-4.2.1.sh $PUBLIC/
|
||||
'''
|
||||
}
|
||||
}
|
||||
stage('Archive') {
|
||||
steps {
|
||||
script {
|
||||
archiveArtifacts artifacts: 'build/tmp/deploy/images/,build/tmp/deploy/sdk/', fingerprint: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
1
meta-diya
Submodule
1
meta-diya
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit b333742f9f51d88fde0d81f5d9ce825296032717
|
@ -1 +1 @@
|
||||
Subproject commit d71a08b3d8fc69d3213c10885af9cc693056a8bd
|
||||
Subproject commit edd1a1e284fdcb80cd48d411f235d47f23bc27ae
|
@ -1 +1 @@
|
||||
Subproject commit aa0aed9a08d6578a18c4eeb3b44ed8354a57ebee
|
||||
Subproject commit c153c694bd7a08de474470d7c1c7fd550117b162
|
@ -1 +1 @@
|
||||
Subproject commit 0e9c1ad46aafad37e09439e884819bfa591ab6ca
|
||||
Subproject commit 6ff79b3423d0d4ca9a2afffcc4d197ac2ead5e34
|
2
poky
2
poky
@ -1 +1 @@
|
||||
Subproject commit c9d5df0cddb1e335e780fce995a0ee0660d5ac6e
|
||||
Subproject commit 9036bc090c771c710796e3690da59d3ebb96dcf1
|
Loading…
x
Reference in New Issue
Block a user