Skip to content

Commit 3324dfe

Browse files
committed
jobs/build-fcos-buildroot: don't read pipecfg
While having the buildroot image be defined in fedora-coreos-config is on purpose, in the context of actually building the image we shouldn't need the pipecfg here. It's just a given that the canonical image definition is in f-c-c, so let's hardcode it and drop the pipecfg sourcing. This matches e.g. `build-cosa`.
1 parent 187a01f commit 3324dfe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

jobs/build-fcos-buildroot.Jenkinsfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ node {
44
checkout scm
55
// these are script global vars
66
pipeutils = load("utils.groovy")
7-
pipecfg = pipeutils.load_pipecfg()
87
}
98

109
properties([
@@ -46,7 +45,7 @@ properties([
4645
trim: true),
4746
string(name: 'CONFIG_GIT_URL',
4847
description: 'Override the src/config git repo to use',
49-
defaultValue: pipecfg.source_config.url,
48+
defaultValue: "https://github.com/coreos/fedora-coreos-config",
5049
trim: true),
5150
string(name: 'CONFIG_GIT_REF',
5251
description: 'Override the src/config git ref to use',

0 commit comments

Comments
 (0)