Luca

Results 123 comments of Luca

@quyykk fixed, thanks again for adding GHA support to vcpkg, that was a great addition!

@quyykk fortunately the run-vcpkg action caches only vcpkg executable and its data file and not packages built by vcpkg. The output of run-vcpkg > Caching paths: '/home/runner/work/vcpkg-gha-demo/vcpkg-gha-demo/vcpkg/*,!/home/runner/work/vcpkg-gha-demo/vcpkg-gha-demo/vcpkg/installed,!/home/runner/work/vcpkg-gha-demo/vcpkg-gha-demo/vcpkg/vcpkg_installed,!/home/runner/work/vcpkg-gha-demo/vcpkg-gha-demo/vcpkg/packages,!/home/runner/work/vcpkg-gha-demo/vcpkg-gha-demo/vcpkg/buildtrees,!/home/runner/work/vcpkg-gha-demo/vcpkg-gha-demo/vcpkg/downloads' should be read...

@quyykk yes, it caches the ports as well, and it can be disabled with [doNotCache:true](https://github.com/lukka/run-vcpkg/blob/main/action.yml#LL30C3-L30C13). I may also consider removing this caching entirely, as it may be not that relevant...

@bmcdonnell-fb it would be great if you could provide a repro project of this issue. Or also, could you share the content of the object at `"cmake.defaultVariants": {}` in your...

@LecrisUT thank you, if there is an automatic way to publish new releases I'd be glad to look into it. I have CI up to testing coverage automatized on each...

@bwrsandman by reading your log, the build on Windows and on Linux are failing in a way that is not what the action can help with, but it is up...

@bwrsandman currently the documentation (both for `run-cmake` and `run-vcpkg`) states to set a default vcpkg triplet could be set using by adding the definition of the `VCPKG_DEFAULT_TRIPLET` env var, for...

@LecrisUT thanks for the suggestion! Are you willing to create a PR for adding the feature? Some thoughts: - this may be a specific action that could be accomplishing this...

@LecrisUT did you consider using `jobs` property in build and test presets of `CMakePresets.json`?

@LecrisUT The `cmake` invocation could be customized to satisfy any additional needs with the usage of the `*AdditionalArgs` and `*CmdString` [inputs](https://github.com/lukka/run-cmake/blob/main/action.yml). If those inputs are not enough, contribution to this...