Compare commits
3 Commits
6e151a929b
...
5b1feba241
| Author | SHA1 | Date |
|---|---|---|
|
|
5b1feba241 | |
|
|
091e7b233a | |
|
|
8340926289 |
|
|
@ -1,4 +1,8 @@
|
|||
node ("make") {
|
||||
stage('checkout tools') {
|
||||
checkout scm
|
||||
}
|
||||
|
||||
stage('checkout') {
|
||||
checkout([
|
||||
$class: 'GitSCM',
|
||||
|
|
|
|||
4
build.sh
4
build.sh
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/sh
|
||||
#!/usr/bin/env bash
|
||||
set -euo errexit
|
||||
|
||||
platforms='
|
||||
CONFIG_TARGET_arm64=y
|
||||
|
|
@ -30,4 +31,5 @@ for platform in $platforms; do
|
|||
# Build image
|
||||
make defconfig
|
||||
make -j4
|
||||
exit 1
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in New Issue