Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: impl dependency list flag #2543

Merged
merged 33 commits into from
Dec 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
aba722a
start dependency list
tedim52 Aug 23, 2024
507ef13
add images and package dependencies to plan yaml
tedim52 Aug 30, 2024
546c1c9
hook up to cli
tedim52 Aug 30, 2024
8df95e7
add get starlark plan yaml to api
tedim52 Aug 30, 2024
d0bba73
update tests
tedim52 Aug 30, 2024
3831674
make imgs unique and sort
tedim52 Aug 30, 2024
725cf84
Merge branch 'main' into tedi/dependencylist
tedim52 Aug 30, 2024
65da4ab
refactor plan yaml
tedim52 Aug 30, 2024
b712fe8
only add module prefix and dont add parent package
tedim52 Aug 30, 2024
c1cd1fc
maybe parse yaml
tedim52 Aug 30, 2024
554b754
pull dependencies locally
tedim52 Sep 11, 2024
18c2591
fix cloning pkgs
tedim52 Sep 12, 2024
7e56e5b
replace magic vlues
tedim52 Sep 12, 2024
24bbebb
exhaust struct
tedim52 Sep 12, 2024
09e90ee
Merge branch 'main' into tedi/dependencylist
tedim52 Oct 17, 2024
070fa60
Merge branch 'main' into tedi/dependencylist
tedim52 Nov 14, 2024
f5d4014
start addressing comments
tedim52 Nov 14, 2024
db66969
remove dependencies only flag
tedim52 Nov 15, 2024
ec6e9af
rename test file
tedim52 Nov 20, 2024
5121860
typo
tedim52 Nov 20, 2024
294c325
remove add images
tedim52 Nov 20, 2024
6b489ca
clarify get module prefix
tedim52 Nov 20, 2024
807de9b
finish addressing comments
tedim52 Nov 20, 2024
0a0c10b
account for official imgs
tedim52 Nov 20, 2024
f7e5d9d
regen proto to remove dependencies only
tedim52 Nov 20, 2024
3de186f
change location of err handle
tedim52 Nov 20, 2024
a938a40
use work dir for kurt yml check
tedim52 Nov 20, 2024
57ab266
remove extra colon
tedim52 Nov 20, 2024
c2ce7f4
lint
tedim52 Nov 20, 2024
dcb43e1
change docker auth err to warn logs
tedim52 Nov 20, 2024
8f763bd
Merge branch 'main' into tedi/dependencylist
tedim52 Nov 20, 2024
18de25e
pull local package
tedim52 Nov 25, 2024
9820014
undo breaking change
tedim52 Nov 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
lint
  • Loading branch information
tedim52 committed Nov 20, 2024
commit c2ce7f45feae0aa733998413bfb6044741795aac
3 changes: 3 additions & 0 deletions cli/cli/commands/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,9 @@ func getPackageDependencyYaml(
return nil, stacktrace.Propagate(err, "Unable to read content of Starlark script file '%s'", starlarkScriptOrPackageId)
}
packageYaml, err = enclaveCtx.GetStarlarkScriptPlanYaml(ctx, string(scriptContentBytes), packageArgs)
if err != nil {
return nil, stacktrace.Propagate(err, "An error occurred retrieving plan yaml for provided package.")
}
}
}
return packageYaml, nil
Expand Down
Loading