Skip to content

Commit b3cfc60

Browse files
committed
better warn users when the buildconfig is of type binary
also remove some dead code also properly parse git urls so we recognize when the buildconfig we created really is/isn't binary.
1 parent e72143c commit b3cfc60

File tree

4 files changed

+13
-116
lines changed

4 files changed

+13
-116
lines changed

pkg/generate/app/cmd/describe.go

+11-4
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,18 @@ func describeBuildPipelineWithImage(out io.Writer, ref app.ComponentReference, p
171171
fmt.Fprintf(out, " * The resulting image will be pushed to %s %q\n", to.Kind, to.Name)
172172
}
173173
}
174-
if len(trackedImage) > 0 {
175-
if noSource {
176-
fmt.Fprintf(out, " * Use 'start-build --from-dir=DIR' to trigger a new build\n")
177-
} else {
174+
175+
if noSource {
176+
// if we have no source, the user must always provide the source from the local dir(binary build)
177+
fmt.Fprintf(out, " * Use 'start-build --from-dir=DIR' to trigger a new build\n")
178+
fmt.Fprintf(out, " * WARNING: a binary build was created, you must specify --from-dir/--from-file/--from-repo when starting builds\n")
179+
} else {
180+
if len(trackedImage) > 0 {
181+
// if we have a trackedImage/ICT and we have source, the build will be triggered automatically.
178182
fmt.Fprintf(out, " * Every time %q changes a new build will be triggered\n", trackedImage)
183+
} else {
184+
// if we have source (but not a tracked image), the user must manually trigger a build.
185+
fmt.Fprintf(out, " * Use 'start-build to trigger a new build\n")
179186
}
180187
}
181188
}

pkg/generate/app/sourcelookup.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ func (r *SourceRepository) RemoteURL() (*url.URL, bool, error) {
269269
if len(ref) > 0 {
270270
remote = fmt.Sprintf("%s#%s", remote, ref)
271271
}
272-
if r.remoteURL, err = url.Parse(remote); err != nil {
272+
273+
if r.remoteURL, err = git.ParseRepository(remote); err != nil {
273274
return nil, false, err
274275
}
275276
default:

pkg/generate/app/sourceref.go

-71
This file was deleted.

pkg/generate/app/sourceref_test.go

-40
This file was deleted.

0 commit comments

Comments
 (0)