fix: disable remote execution for apko_image build action#332
Conversation
The run_shell action in apko_image uses use_default_shell_env and
absolute local paths, making it incompatible with remote executors.
Add execution_requirements = {"no-remote-exec": "1"} to force local
execution. Fixes chainguard-dev#331.
this is good; but how can i test all of these things? is there a way for me to setup remote executors in github action to excercise all of these compat things? Because next fix for something else will inevitably regress remote executors, again. |
Am unsure on that. We are using those as hosted runners. Maybe something like this might help. |
The run_shell action in apko_image uses use_default_shell_env and absolute local paths, making it incompatible with remote executors. Add execution_requirements = {"no-remote-exec": "1"} to force local execution.
Fixes #331.