Compare commits

..

No commits in common. "5b1feba2414fe392e37382c944e4a28d5cf59caf" and "6e151a929bd5a934c7873eed4a77d3fc53c8dff2" have entirely different histories.

3 changed files with 36 additions and 43 deletions

4
Jenkinsfile vendored
View File

@ -1,8 +1,4 @@
node ("make") { node ("make") {
stage('checkout tools') {
checkout scm
}
stage('checkout') { stage('checkout') {
checkout([ checkout([
$class: 'GitSCM', $class: 'GitSCM',

View File

@ -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

View File

@ -1,5 +1,4 @@
#!/usr/bin/env bash #!/bin/bash
set -euo errexit
if [ $# -ne 2 -o ! -d "$2" ]; then if [ $# -ne 2 -o ! -d "$2" ]; then
echo "usage: $0 <ident> <folder>" echo "usage: $0 <ident> <folder>"