You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Some users would like to see the repo name included in the list of Completed builds shown at the end of an spk build, e.g. local/mypackagethatjustbuild/S0M3BU1LDID. It will make it clear where the builds ended up and save them having to add the repo name when they want to copy and paste a build id line.
Describe the solution you'd like spk build currently finishes with output like this:
Completed builds:
mypkg/0.3.0/src
mypkg/0.3.0/LWWC62UL variant index 0, ...
...
We'd like it to look like this instead:
Completed builds:
local/mypkg/0.3.0/src
local/mypkg/0.3.0/LWWC62UL variant index 0, ...
...
Additional context
I had a quick look and it'll involve something like turning the BuildIdents returned from the binary build method into LocatedBuildIdents to keep the repo with the build, adjusting the BuildResult enum to contain them, and then adjusting their display to include their repo name.
The text was updated successfully, but these errors were encountered:
dcookspi
changed the title
Have completed builds list show the repo the new builds are in
Have 'Completed builds' list show the repo the new builds are in
Jun 14, 2024
Is your feature request related to a problem? Please describe.
Some users would like to see the repo name included in the list of Completed builds shown at the end of an
spk build
, e.g.local/mypackagethatjustbuild/S0M3BU1LDID
. It will make it clear where the builds ended up and save them having to add the repo name when they want to copy and paste a build id line.Describe the solution you'd like
spk build
currently finishes with output like this:We'd like it to look like this instead:
Additional context
I had a quick look and it'll involve something like turning the
BuildIdent
s returned from the binary build method intoLocatedBuildIdent
s to keep the repo with the build, adjusting theBuildResult
enum to contain them, and then adjusting their display to include their repo name.The text was updated successfully, but these errors were encountered: