Anonymous Maarten

Results 753 comments of Anonymous Maarten

Thanks for the explanation! It looks like it is a rust tool. That won't make it easier to add. @sezero Can you try this commit? https://github.com/madebr/SDL/commit/0de078b0c7ff5c63c1eac614ee8dfd3a949d4644 ci on my fork...

> How should I make it to run under 24.04 to test ? ```diff --- a/.github/workflows/create-test-plan.py +++ b/.github/workflows/create-test-plan.py @@ -125,7 +125,7 @@ JOB_SPECS = { "android-cmake-lean": JobSpec(name="Android (CMake, lean)", os=JobOs.UbuntuLatest,...

I can reproduce. It works on 22.04, but doesn't at 24.04. I reported this upstream at https://github.com/SeleniumHQ/selenium/issues/14609

Not a fix, but let's explicitly use ubuntu-22.04 until we know how to run them on 24.04

> Unrelated, but the following happened in my fork: A one-off? I think so. (I hope so) The only output is > 20: Connecting to "http://localhost:8080/testbounds.html?loghtml=1&SDL_ASSERT=abort&SDL_TRACKMEM_SYMBOL_NAMES=0&SDL_TESTS_QUICK=1&SDL_AUDIO_DRIVER=emscripten&SDL_VIDEO_DRIVER=emscripten&arg_1=--trackmem"

> Let me know if this helps, thanks! It works, but I believe adding this override globally in your profile is the incorrect approach. You might want to use another...

The profile is a global configuration. By prefix, I mean the prefixes of the dependencies of a project (`CMAKE_PREFIX_PATH`). The overrides of the dependencies of projectA should not influence the...

That looks useful, though it feels weird to mix dependency issues with profile. `conan install -h` does not show a `--pr=` option. Is `--pr=` allowed?

Thanks for the background. I felt it was a missing feature in `conanfile.txt`, because it is possible to do in `conanfile.py` through `self.requires(... , force=True)`. The docs only explain how...