Compare commits
2 Commits
1b35fc7ab6
...
104fd548ee
| Author | SHA1 | Date |
|---|---|---|
|
|
104fd548ee | |
|
|
439bdd51e5 |
|
|
@ -1,6 +1,18 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
|
stage('Cleanup') {
|
||||||
|
steps {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Checkout build') {
|
||||||
|
steps {
|
||||||
|
checkout scm
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Checkout sources') {
|
stage('Checkout sources') {
|
||||||
steps {
|
steps {
|
||||||
checkout([
|
checkout([
|
||||||
|
|
@ -39,7 +51,6 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
stage('Apply patches') {
|
stage('Apply patches') {
|
||||||
steps {
|
steps {
|
||||||
dir("source") {
|
dir("source") {
|
||||||
|
|
|
||||||
5
build.sh
5
build.sh
|
|
@ -2,9 +2,8 @@
|
||||||
set -euo errexit
|
set -euo errexit
|
||||||
|
|
||||||
platforms='
|
platforms='
|
||||||
CONFIG_TARGET_arm64=y
|
|
||||||
CONFIG_TARGET_ath25=y
|
|
||||||
CONFIG_TARGET_ar71xx=y
|
CONFIG_TARGET_ar71xx=y
|
||||||
|
CONFIG_TARGET_ath25=y
|
||||||
CONFIG_TARGET_brcm2708=y\nCONFIG_TARGET_brcm2708_bcm2708=y
|
CONFIG_TARGET_brcm2708=y\nCONFIG_TARGET_brcm2708_bcm2708=y
|
||||||
CONFIG_TARGET_brcm2708=y\nCONFIG_TARGET_brcm2708_bcm2709=y
|
CONFIG_TARGET_brcm2708=y\nCONFIG_TARGET_brcm2708_bcm2709=y
|
||||||
CONFIG_TARGET_bcm53xx=y
|
CONFIG_TARGET_bcm53xx=y
|
||||||
|
|
@ -15,6 +14,7 @@ platforms='
|
||||||
CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_mt7628=y
|
CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_mt7628=y
|
||||||
CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_rt3883=y
|
CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_rt3883=y
|
||||||
CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_rt288x=y
|
CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_rt288x=y
|
||||||
|
CONFIG_TARGET_arm64=y
|
||||||
'
|
'
|
||||||
|
|
||||||
for platform in $platforms; do
|
for platform in $platforms; do
|
||||||
|
|
@ -31,5 +31,4 @@ for platform in $platforms; do
|
||||||
# Build image
|
# Build image
|
||||||
make defconfig
|
make defconfig
|
||||||
make -j4
|
make -j4
|
||||||
exit 1
|
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue