Compare commits
3 Commits
6e151a929b
...
5b1feba241
| Author | SHA1 | Date |
|---|---|---|
|
|
5b1feba241 | |
|
|
091e7b233a | |
|
|
8340926289 |
|
|
@ -1,4 +1,8 @@
|
||||||
node ("make") {
|
node ("make") {
|
||||||
|
stage('checkout tools') {
|
||||||
|
checkout scm
|
||||||
|
}
|
||||||
|
|
||||||
stage('checkout') {
|
stage('checkout') {
|
||||||
checkout([
|
checkout([
|
||||||
$class: 'GitSCM',
|
$class: 'GitSCM',
|
||||||
|
|
|
||||||
4
build.sh
4
build.sh
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh
|
#!/usr/bin/env bash
|
||||||
|
set -euo errexit
|
||||||
|
|
||||||
platforms='
|
platforms='
|
||||||
CONFIG_TARGET_arm64=y
|
CONFIG_TARGET_arm64=y
|
||||||
|
|
@ -30,4 +31,5 @@ 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