Compare commits

...

3 Commits

Author SHA1 Message Date
Robert Jacob 5b1feba241 Stop after first build. 2017-07-08 16:55:51 +02:00
Robert Jacob 091e7b233a Use bash and set fail conditions. Reformat files. 2017-07-08 16:55:45 +02:00
Robert Jacob 8340926289 Checkout build files. 2017-07-08 16:48:35 +02:00
3 changed files with 43 additions and 36 deletions

4
Jenkinsfile vendored
View File

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

View File

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

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/usr/bin/env 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>"