Replies: 2 comments 3 replies
-
This seemingly simple change would allow compiling C/C++/Rust projects that depend on C/C++ code with native toolchains and packages, which saves quite a bit of headaches when cross-compilation toolchains or pkg-config definition files are not that feasible, while keeping all the build steps nicely defined inside the workflow file, and not needing an additional container. For context, these are the kind of ugly hacks that people are doing right now: https://gitlab.com/rust_musl_docker/image/-/tree/master |
Beta Was this translation helpful? Give feedback.
-
Sorry, I read through actions/runner-images#2095 and I don't think that I fully understand the why here yet. It sounds like your fundamental concern is that you want to be able to do something like |
Beta Was this translation helpful? Give feedback.
-
Please, change the startup order of GitHub Actions job from:
to:
That would allow to use services for doing modifications on the host before running the job container. See further details in actions/runner-images#2095.
Beta Was this translation helpful? Give feedback.
All reactions