-
Notifications
You must be signed in to change notification settings - Fork 316
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
replace packages.txt with calculated graph #2318
Conversation
0d486d6
to
bb54927
Compare
I ran a profile, the overwhelming majority of the time is in the graph sort. Attached. I will remove the stable sort and see if that is the issue, either way, I will report it upwards. |
58daac7
to
172e673
Compare
e99c1b8
to
4e2f0dd
Compare
I think |
44d80c1
to
dc51196
Compare
|
dc51196
to
775bd35
Compare
I am leaving |
775bd35
to
71ad7e7
Compare
Build order is almost right, but not quite yet. |
There was an issue. It was not allowing self-fulfilling dependencies, and checking in an incorrect way. There is an open PR that fixes that issue. However, it opens several new issues with the actual |
There are 4 dependencies here, but they fall into 2 categories. wolfi-baselayout
This is an unresolvable loop. pax-utilspax-utils is due to pipelines
And we have a cycle. pcre2
rustls-ffi
And we have a cycle |
71ad7e7
to
21817a0
Compare
I think we can drop the glibc dependency on wolfi-baselayout. Meson, being python, can just drop Not sure what to do about |
I can open PRs for the first two. As you said, not sure what to do about the rust one. What about pcre? |
See #2937
See #2938 It only partially solves the job. It frees up one loop, but reveals another.
|
21817a0
to
9657402
Compare
d287c98
to
e2897ae
Compare
Do not merge this in. It is good to approve, I am going to wait until I see that the latest version of |
FWIW we can manually trigger this build this whenever needed |
Yeah, but I missed something on the Makefile anyways. Working that now |
Didn't the symlinked directories break arm builds last time? Did that get fixed? |
I am pretty sure they did, but I cannot remember what it was that fixed it. As soon as I have the Makefile demangled, I will track it down. |
e2897ae
to
440af8b
Compare
Some updates here:
Those need review, then we wait for wolfictl to be updated in wolfi/sdk by tomorrow. |
Symlinks should be good in kontext now |
440af8b
to
84b986f
Compare
which is what is in latest build on this branch, so it is correct. I will remove the unused |
84b986f
to
412e2fa
Compare
this shouldn't block, but I get these errors when trying to reproduced this: ➜ wolfictl text --dir . --type name
Error: unable to build graph:
envoy-1.26.2-r0: unable to resolve dependency gcc=12.2.0-r11: could not find package gcc=12.2.0-r11 in indexes
envoy-1.26.2-r0: unable to resolve dependency libgcc=12.2.0-r11: could not find package libgcc=12.2.0-r11 in indexes
envoy-1.26.2-r0: unable to resolve dependency libstdc++-dev=12.2.0-r11: could not find package libstdc++-dev=12.2.0-r11 in indexes
envoy-1.26.2-r0: unable to resolve dependency libstdc++=12.2.0-r11: could not find package libstdc++=12.2.0-r11 in indexes
FATA[0000] error during command execution: unable to build graph:
envoy-1.26.2-r0: unable to resolve dependency gcc=12.2.0-r11: could not find package gcc=12.2.0-r11 in indexes
envoy-1.26.2-r0: unable to resolve dependency libgcc=12.2.0-r11: could not find package libgcc=12.2.0-r11 in indexes
envoy-1.26.2-r0: unable to resolve dependency libstdc++-dev=12.2.0-r11: could not find package libstdc++-dev=12.2.0-r11 in indexes
envoy-1.26.2-r0: unable to resolve dependency libstdc++=12.2.0-r11: could not find package libstdc++=12.2.0-r11 in indexes digging in, I updated # OLD
- gcc=12.2.0-r11
- libstdc++=12.2.0-r11
- libstdc++-dev=12.2.0-r11
- libgcc=12.2.0-r11
# NEW
- gcc-12
- libstdc++-12
- libstdc++-12-dev
- libgcc # This should be `libgcc-12` and that got past that error, but flagged a new one: ❯ wolfictl text --dir . --type name
Error: unable to build graph:
rabbitmq-server-3.12.0-r1: unable to resolve dependency elixir<1.15: could not find package elixir<1.15 in indexes
FATA[0000] error during command execution: unable to build graph:
rabbitmq-server-3.12.0-r1: unable to resolve dependency elixir<1.15: could not find package elixir<1.15 in indexes which I only got to work by setting to the latest am I doing something wrong? or is |
This appears to be correct. gcc-12.yaml has version 12.3.0-r0: package:
name: gcc-12
version: 12.3.0
epoch: 0 But envoy.yaml requires exactly 12.2.0-r11: - gcc=12.2.0-r11
- libstdc++=12.2.0-r11
- libstdc++-dev=12.2.0-r11
- libgcc=12.2.0-r11 There is a similar issue with rabbitmq depending on |
You could make the argument that, "we had those packages at one time, and we loaded them up into our registry, so maybe they already are there." That is a good argument, but it loosens the constraints. The graph checks if we can build it with the most constrained situation possible, which means without the cache at all (from scratch). These changes prevent it. |
709da0b
to
5f94cb2
Compare
5f94cb2
to
f2ef9cf
Compare
Signed-off-by: Avi Deitcher <[email protected]>
f2ef9cf
to
ec80dda
Compare
Yes, we should not allow build-depending on something that happens to be in the cache. If we want to pin to an older dependency, then we should do the work to properly set that dependency up to be slotted. |
This replaces
packages.txt
entirely withwolfictl text
to generate the graph.This is a draft for a few reasons:
there remains an area in CI where we usepackages.txt
, but it is the last step in a job, so I don't understand how it is used, and thus how to replace itTo reproduce the work this will do:
wolfictl
or use the container image forwolfictl
orsdk
wolfictl text --dir . --type name
and wait a few minutes for the output