Scott Moser
Scott Moser
Because we have multiple pythons and we want them to be co-installable, we have packages like: 1. python-3.12-base 2. python-3.12 3. python-3.11-base 4. python-3.11 The -base package provides basically everything...
…etadata_filter (#26491)" This reverts commit 4be2297ed7cd3373a1e2d04fa694cf03d38280ce. lru_redux and kubeclient were added as deps for fluent-plugin-kubernetes_metadata_filter but did not immediately solve the problem at hand. Further adds will be needed to...
I was looking at the build log of a https://github.com/wolfi-dev/os/pull/27452/ [here](https://github.com/wolfi-dev/os/pull/27452/checks?sha=8ed67b077ffcec0b8890642bba1b4531d4b1e3da) It ends like: ``` 2024/09/03 14:50:50 INFO built image layer tarball as /temp/apko-temp-1821752880/apko-aarch64.tar.gz 2024/09/03 14:50:50 INFO using /temp/apko-temp-1821752880/apko-aarch64.tar.gz for...
I've seen this need twice in the past two days. Once with squid https://github.com/wolfi-dev/os/pull/25778 and once https://github.com/wolfi-dev/os/pull/25652 An upstream commit may have unrelated changes that don't apply. In the squid...
Generally, absolute symlinks are less "nice" than relative, as they assume the reader is rooted at /. In an installed system that is going to be true, but if you...
Generally speaking, installed packages should not have dangling symlinks. There are definitely cases where a symlink is resolved across a package/subpackage/dependency-package border, so those might need to be accounted for....
I have two things I'd like to do in pipelines and would like to not use shell. 1. a generic test executer that would support in a much cleaner way...
I have a situation where I would like to put `SETUPTOOLS_SCM_PRETEND_VERSION=${{package.version}}` into the build environment. I want to do: ```yaml environment: environment: SETUPTOOLS_SCM_PRETEND_VERSION: ${{package.version}} OTHER: "other is ${{vars.VARS}}" ``` The...
On a workstation I currently cannot build datadog-agent with `--runner=docker` or `--runner=bubblewrap`. Full logs of my failed attemt here here: * [bubblewrap](https://github.com/user-attachments/files/16316827/datadog-bubblewrap.log) * [docker](https://github.com/user-attachments/files/16316828/datadog-docker.log) ``` $ git log --oneline HEAD^.....
I was trying to iterate over a test pipeline, but it didn't work for me. Its possible I just don't have the right syntax. ```yaml package: name: test-me2 version: 1.0...