Skip to content

Refactor build.yml to invoke docker run manually#1

Merged
manupawickramasinghe merged 2 commits intomainfrom
main-3591827283033954003
Feb 1, 2026
Merged

Refactor build.yml to invoke docker run manually#1
manupawickramasinghe merged 2 commits intomainfrom
main-3591827283033954003

Conversation

@manupawickramasinghe
Copy link
Member

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 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.


PR created automatically by Jules for task 3591827283033954003 started by @manupawickramasinghe

…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>
@google-labs-jules
Copy link

👋 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 @jules. You can find this option in the Pull Request section of your global Jules UI settings. You can always switch back!

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>
@manupawickramasinghe manupawickramasinghe merged commit 462793c into main Feb 1, 2026
172 of 180 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment