Compare commits

...

No commits in common. "4fe867e5d8fb6459dae23592652509e37c43a922" and "fe7637b5b845401e2a1f7c49dee5e7cd8dfd7272" have entirely different histories.

2 changed files with 13 additions and 3 deletions

5
ci/Jenkinsfile vendored
View File

@ -75,7 +75,7 @@ pipeline {
),
],
userRemoteConfigs: [[
url: 'https://git.pyrocufflink.net/AimeeOS/aimee-os.git,
url: 'https://git.pyrocufflink.net/AimeeOS/aimee-os.git',
]],
)
)
@ -84,8 +84,7 @@ pipeline {
stage('Build') {
steps {
sh '{ cat airplaypi_defconfig.in ; grep BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION buildroot/configs/raspberrypi3_defconfig; } > airplaypi_defconfig'
sh 'make -C buildroot O="${PWD}"/_build BR2_EXTERNAL="${PWD}/aimee-os" defconfig BR2_DEFCONFIG="${PWD}"/airplaypi_defconfig'
sh '. ci/defconfig.sh'
script {
if (params.CUSTOM_TARGET) {
sh "make -C _build '${CUSTOM_TARGET}'"

11
ci/defconfig.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/sh
{
cat airplaypi_defconfig.in
grep BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION buildroot/configs/raspberrypi3_defconfig
} > airplaypi_defconfig
make \
-C buildroot \
O="${PWD}"/_build \
BR2_EXTERNAL="${PWD}/aimee-os" \
defconfig \
BR2_DEFCONFIG="${PWD}"/airplaypi_defconfig