Compare commits
No commits in common. "5b1feba2414fe392e37382c944e4a28d5cf59caf" and "6e151a929bd5a934c7873eed4a77d3fc53c8dff2" have entirely different histories.
5b1feba241
...
6e151a929b
|
|
@ -1,8 +1,4 @@
|
||||||
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,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/bin/sh
|
||||||
set -euo errexit
|
|
||||||
|
|
||||||
platforms='
|
platforms='
|
||||||
CONFIG_TARGET_arm64=y
|
CONFIG_TARGET_arm64=y
|
||||||
|
|
@ -31,5 +30,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