Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jetify-com/devbox
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.0.0-edge.2025-07-31
Choose a base ref
...
head repository: jetify-com/devbox
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 4 commits
  • 13 files changed
  • 2 contributors

Commits on Aug 5, 2025

  1. [docker image] set filter-syscalls = false in nix.conf to workaround …

    …missing `seccomp BPF program` in arm64 linux (#2665)
    
    ## Summary
    
    The docker-image is failing to build in GHA:
    
    https://github.com/jetify-com/devbox/actions/runs/16204700194/job/47358742840
    
    The error indicates that the seccomp (secure computing mode) BPF
    (Berkeley Packet Filter) program that Nix tries to load is incompatible
    with the Docker container environment on ARM64.
    
    When filter-syscalls = true (the default), Nix uses seccomp BPF to
    filter system calls for security sandboxing. Setting filter-syscalls =
    false disables Nix's syscall filtering, which bypasses the seccomp BPF
    program entirely and prevents the error.
    
    This PR uses the approach from #1811 to fix this for arm64 platforms.
    
    
    ## How was it tested?
    
    `docker build --platform linux/arm64 -t devbox-image-arm64 -f
    /Users/savil/code/jetpack/devbox/internal/devbox/generate/tmpl/DevboxImageDockerfile
    .`
    `docker build --platform linux/arm64 -t devbox-image-arm64 -f
    /Users/savil/code/jetpack/devbox/internal/devbox/generate/tmpl/DevboxImageDockerfileRootUser
    .`
    
    BEFORE: these failed with the error seen in the GHA above
    AFTER: build successfully
    
    Also confirmed that --platform linux/amd64 would build successfully
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    savil authored Aug 5, 2025
    Configuration menu
    Copy the full SHA
    3ec2038 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2025

  1. [cicd] Fix github rate limit issue (#2667)

    ## Summary
    
    Fixes
    https://github.com/jetify-com/devbox/actions/runs/16847493651/job/47729104601
    
    This is a very specific fix to this job. I think a better solution is to
    pass `--extra-access-tokens` flag into nix commands that may interact
    with github.
    
    ## How was it tested?
    
    Not sure how to test.
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    mikeland73 authored Aug 11, 2025
    Configuration menu
    Copy the full SHA
    026caab View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2025

  1. [deps] Update go (#2669)

    ## Summary
    
    Fixes #2668
    
    ## How was it tested?
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    mikeland73 authored Aug 12, 2025
    Configuration menu
    Copy the full SHA
    4be11f7 View commit details
    Browse the repository at this point in the history
  2. [nix] Test devbox on latest nix (#2670)

    ## Summary
    
    ## How was it tested?
    
    ## Community Contribution License
    
    All community contributions in this pull request are licensed to the
    project
    maintainers under the terms of the
    [Apache 2 License](https://www.apache.org/licenses/LICENSE-2.0).
    
    By creating this pull request, I represent that I have the right to
    license the
    contributions to the project maintainers under the Apache 2 License as
    stated in
    the
    [Community Contribution
    License](https://github.com/jetify-com/opensource/blob/main/CONTRIBUTING.md#community-contribution-license).
    mikeland73 authored Aug 12, 2025
    Configuration menu
    Copy the full SHA
    f2920fd View commit details
    Browse the repository at this point in the history
Loading