Skip to content

Commit 3402bfa

Browse files
committed
fix: Drop target limit
from two to all targets
1 parent 360f03e commit 3402bfa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Jenkinsfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ pipeline {
9494
dir('gluon') {
9595
script {
9696
def targets_string = sh(script: 'make list-targets', returnStdout: true)
97-
def targets1 = targets_string.tokenize('\n')
98-
def targets = ['ath79-generic','ipq40xx-generic'] // override for testing purposes
97+
def targets = targets_string.tokenize('\n')
9998
def build_stages = [:]
10099

101100
targets.each { target_name ->

0 commit comments

Comments
 (0)