Refactor build.yml to invoke docker run manually#1
Refactor build.yml to invoke docker run manually#1manupawickramasinghe merged 2 commits intomainfrom
Conversation
…ainer failure The self-hosted runner fails with "Value cannot be null. (Parameter 'network')" and "docker version" exit code 1 when using the job-level `container:` directive. This change removes the `container:` directive and wraps build steps in explicit `docker run` commands using heredocs to preserve command structure and environment variables. Also adjusts permissions on the checkout directory to ensure the container user (buildbot) can write to it. Co-authored-by: manupawickramasinghe <73810867+manupawickramasinghe@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
Refactored the build workflow to manually invoke `docker run` with `sudo` to resolve permission issues on the self-hosted runner. Mounted the entire `$GITHUB_WORKSPACE` to `/workspace` inside the container to ensure that all downloaded tools and scripts (including `.github` directory) are accessible. Used heredocs for build commands to preserve structure and legibility. Adjusted permissions on the checkout directory to ensure the `buildbot` user inside the container can write to it. Co-authored-by: manupawickramasinghe <73810867+manupawickramasinghe@users.noreply.github.com>
Refactor build.yml to invoke docker run manually to avoid runner container failure
The self-hosted runner fails with "Value cannot be null. (Parameter 'network')" and "docker version" exit code 1 when using the job-level
container:directive.This change removes the
container:directive and wraps build steps in explicitdocker runcommands using heredocs to preserve command structure and environment variables.Also adjusts permissions on the checkout directory to ensure the container user (buildbot) can write to it.
PR created automatically by Jules for task 3591827283033954003 started by @manupawickramasinghe