Skip to content

feat(ext4): pack metadata + larger flex group on rootfs mkfs#2566

Closed
ValentaTomas wants to merge 1 commit intomainfrom
feat/ext4-packed-meta
Closed

feat(ext4): pack metadata + larger flex group on rootfs mkfs#2566
ValentaTomas wants to merge 1 commit intomainfrom
feat/ext4-packed-meta

Conversation

@ValentaTomas
Copy link
Copy Markdown
Member

@ValentaTomas ValentaTomas commented May 5, 2026

Pass -G 64 and -E packed_meta_blocks=1 to mkfs.ext4 on rootfs creation. Both options cluster ext4 metadata more tightly on disk so small-file metadata dirties land in fewer 4 MiB GCS chunks per snapshot.

mkfs-time only, no semantic change. Pairs with #2563 (inline_data).

Pass -G 64 (flex group size, default 16) and -E packed_meta_blocks=1
to mkfs.ext4. Both options improve spatial clustering of ext4
metadata on disk:

- -G 64 packs inode tables and bitmaps for 64 block groups into one
  contiguous run instead of 16, so small-file metadata churn is more
  likely to dirty blocks within the same 4 MiB GCS chunk.

- packed_meta_blocks places all metadata at the start of the disk so
  superblock / group descriptor / inode table / bitmap dirties cluster
  together rather than being interleaved with data regions.

Net effect: fewer distinct 4 MiB chunks per snapshot diff, fewer GCS
round-trips on cold resume. mkfs-time only; affects newly-built bases.
@cursor
Copy link
Copy Markdown

cursor Bot commented May 5, 2026

PR Summary

Medium Risk
Changes the mkfs.ext4 invocation for rootfs creation; if the target mkfs.ext4/e2fsprogs version or filesystem geometry doesn’t support -G 64 or -E packed_meta_blocks=1, rootfs builds may fail or produce images with unexpected layout/performance characteristics.

Overview
This changes rootfs mkfs.ext4 to pass -G 64 and -E packed_meta_blocks=1. Potential issues are compatibility with older mkfs.ext4 versions (flags unsupported or rejected) and altered on-disk metadata layout that could affect tooling assumptions or performance.

Reviewed by Cursor Bugbot for commit 5c017fc. Bugbot is set up for automated code reviews on this repo. Configure here.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the ext4 filesystem creation command to include the -G 64 and -E packed_meta_blocks=1 flags, which optimize metadata placement for better spatial clustering. I have no feedback to provide.

@codecov
Copy link
Copy Markdown

codecov Bot commented May 5, 2026

❌ 98 Tests Failed:

Tests completed Failed Passed Skipped
2562 98 2464 7
View the full list of 104 ❄️ flaky test(s)
github.com/e2b-dev/infra/packages/orchestrator/cmd/smoketest::TestSmokeAllFCVersions

Flake rate in main: 6.90% (Passed 27 times, Failed 2 times)

Stack Traces | 17.6s run time
=== RUN   TestSmokeAllFCVersions
    smoke_test.go:57: building envd from .../infra/packages/envd
    smoke_test.go:57: built envd: .../infra/packages/envd/bin/envd
    smoke_test.go:62: downloading https://storage.googleapis..../e2b-prod-public-builds/kernels/vmlinux-6.1.158/vmlinux.bin
    smoke_test.go:64: downloading https://github..../releases/download/v1.14.1_458ca91/firecracker-amd64
    smoke_test.go:64: downloading https://github..../releases/download/v1.10.1_30cbb07/firecracker
    smoke_test.go:64: downloading https://github..../releases/download/v1.12.1_210cbac/firecracker-amd64
--- FAIL: TestSmokeAllFCVersions (17.55s)
github.com/e2b-dev/infra/packages/orchestrator/cmd/smoketest::TestSmokeAllFCVersions/fc-v1.10

Flake rate in main: 3.45% (Passed 28 times, Failed 1 times)

Stack Traces | 4.5s run time
=== RUN   TestSmokeAllFCVersions/fc-v1.10
    smoke_test.go:78: creating build f968c89e-90a0-446c-8bda-57b34cd363b3 with FC v1.10.1_30cbb07
->> [stderr] mke2fs 1.47.0 (5-Feb-2023)
->> [stdout] Creating regular file .../orchestrator/build-templates/86d0d74a-e2c9-4357-a5c1-a8be89cb1f7
->> [stdout] 8/rootfs.filesystem.build
->> [stdout] 64-bit filesystem support is not enabled.  The larger fields afforded by this feature enable full-strength checksumming.  Pass -O 64bit to rectify.
Creating filesystem with 6400000 4k blocks and 6400576 inodes
Filesystem UUID: 6f67c9df-d92c-4dcb-85d0-d02c6ce5c4f8
Superblock backups stored on blocks: 
	32768, 6389760

Allocating group tables:
->> [stdout] done                            
Writing inode tables:   0/196�������       �������done
->> [stdout] Creating journal (32768 blocks):
->> [stdout] done
->> [stdout] Writing superblocks and filesystem accounting information:
->> [stdout] 0/196�������       �������
->> [stdout] done
->> [stderr] resize2fs 1.47.0 (5-Feb-2023)
->> [stderr] resize2fs: No space left on device while trying to resize .../orchestrator/build-templates/86d0d74a-e2c9-4357-a5c1-a8be89cb1f78/rootfs.filesystem.build
Please run 'e2fsck -fy .../orchestrator/build-templates/86d0d74a-e2c9-4357-a5c1-a8be89cb1f78/rootfs.filesystem.build' to fix the filesystem
after the aborted resize operation.
->> [stdout] Resizing the filesystem on .../orchestrator/build-templates/86d0d74a-e2c9-4357-a5c1-a8be89cb1f78/rootfs.filesystem.build to 229376 (4k) blocks.
    smoke_test.go:97: 
        	Error Trace:	.../cmd/smoketest/smoke_test.go:97
        	Error:      	Received unexpected error:
        	            	error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1
        	Test:       	TestSmokeAllFCVersions/fc-v1.10
        	Messages:   	create build failed for FC v1.10.1_30cbb07
--- FAIL: TestSmokeAllFCVersions/fc-v1.10 (4.50s)
github.com/e2b-dev/infra/packages/orchestrator/cmd/smoketest::TestSmokeAllFCVersions/fc-v1.12

Flake rate in main: 5.00% (Passed 19 times, Failed 1 times)

Stack Traces | 2.69s run time
=== RUN   TestSmokeAllFCVersions/fc-v1.12
    smoke_test.go:78: creating build b51deae9-8043-40b9-989b-b89fa73f1007 with FC v1.12.1_210cbac
->> [stderr] mke2fs 1.47.0 (5-Feb-2023)
->> [stdout] Creating regular file .../build-templates/d7ef0840-dc77-4931-8507-613fbc5195c2/rootfs.filesystem.build
->> [stdout] 64-bit filesystem support is not enabled.  The larger fields afforded by this feature enable full-strength checksumming.  Pass -O 64bit to rectify.
->> [stdout] Creating filesystem with 6400000 4k blocks and 6400576 inodes
Filesystem UUID: 3f639bb5-bc49-4d4a-9dfe-059ef540a772
Superblock backups stored on blocks: 
	32768
->> [stdout] , 6389760
->> [stdout] 
->> [stdout] Allocating group tables:
->> [stdout] done
->> [stdout] Writing inode tables:   0/196�������
->> [stdout] �������
->> [stdout] done
->> [stdout] Creating journal (32768 blocks):
->> [stdout] done
Writing superblocks and filesystem accounting information:
->> [stdout] 0/196�������
->> [stdout] �������
->> [stdout] done
->> [stderr] resize2fs 1.47.0 (5-Feb-2023)
->> [stderr] resize2fs: No space left on device while trying to resize .../build-templates/d7ef0840-dc77-4931-8507-613fbc5195c2/rootfs.filesystem.build
Please run 'e2fsck -fy .../build-templates/d7ef0840-dc77-4931-8507-613fbc5195c2/rootfs.filesystem.build' to fix the filesystem
after the aborted resize operation.
->> [stdout] Resizing the filesystem on .../build-templates/d7ef0840-dc77-4931-8507-613fbc5195c2/rootfs.filesystem.build to 229376 (4k) blocks.
    smoke_test.go:97: 
        	Error Trace:	.../cmd/smoketest/smoke_test.go:97
        	Error:      	Received unexpected error:
        	            	error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1
        	Test:       	TestSmokeAllFCVersions/fc-v1.12
        	Messages:   	create build failed for FC v1.12.1_210cbac
--- FAIL: TestSmokeAllFCVersions/fc-v1.12 (2.69s)
github.com/e2b-dev/infra/packages/orchestrator/cmd/smoketest::TestSmokeAllFCVersions/fc-v1.14

Flake rate in main: 5.00% (Passed 19 times, Failed 1 times)

Stack Traces | 2.47s run time
=== RUN   TestSmokeAllFCVersions/fc-v1.14
    smoke_test.go:78: creating build 8ac91a84-0cc8-4b73-b62c-b39356fc8c2f with FC v1.14.1_458ca91
->> [stderr] mke2fs 1.47.0 (5-Feb-2023)
->> [stdout] Creating regular file .../build-templates/379cdd38-c7dd-4e13-bcd7-ef2724cebc68/rootfs.filesystem.build
->> [stdout] 64-bit filesystem support is not enabled.  The larger fields afforded by this feature enable full-strength checksumming.  Pass -O 64bit to rectify.
->> [stdout] Creating filesystem with 6400000 4k blocks and 6400576 inodes
Filesystem UUID: 1302d3f8-4551-4b7e-ac0d-e67f00ccdce4
Superblock backups stored on blocks: 
	32768, 6389760

Allocating group tables:
->> [stdout] done
->> [stdout] Writing inode tables:   0/196�������
->> [stdout] �������done
->> [stdout] Creating journal (32768 blocks):
->> [stdout] done
Writing superblocks and filesystem accounting information:   0/196�������       �������
->> [stdout] done
->> [stderr] resize2fs 1.47.0 (5-Feb-2023)
->> [stderr] resize2fs: No space left on device while trying to resize .../build-templates/379cdd38-c7dd-4e13-bcd7-ef2724cebc68/rootfs.filesystem.build
Please run 'e2fsck -fy .../build-templates/379cdd38-c7dd-4e13-bcd7-ef2724cebc68/rootfs.filesystem.build' to fix the filesystem
after the aborted resize operation.
->> [stdout] Resizing the filesystem on .../build-templates/379cdd38-c7dd-4e13-bcd7-ef2724cebc68/rootfs.filesystem.build to 229376 (4k) blocks.
    smoke_test.go:97: 
        	Error Trace:	.../cmd/smoketest/smoke_test.go:97
        	Error:      	Received unexpected error:
        	            	error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1
        	Test:       	TestSmokeAllFCVersions/fc-v1.14
        	Messages:   	create build failed for FC v1.14.1_458ca91
--- FAIL: TestSmokeAllFCVersions/fc-v1.14 (2.47s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/metrics::TestTeamMetrics

Flake rate in main: 69.49% (Passed 18 times, Failed 41 times)

Stack Traces | 1.42s run time
=== RUN   TestTeamMetrics
=== PAUSE TestTeamMetrics
=== CONT  TestTeamMetrics
    team_metrics_test.go:61: 
        	Error Trace:	.../api/metrics/team_metrics_test.go:61
        	Error:      	Should be true
        	Test:       	TestTeamMetrics
        	Messages:   	MaxConcurrentSandboxes should be >= 0
--- FAIL: TestTeamMetrics (1.42s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowAll

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowAll
=== PAUSE TestEgressFirewallAllowAll
=== CONT  TestEgressFirewallAllowAll
    sandbox_network_out_test.go:303: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowAll (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowAllDomainsWildcard

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowAllDomainsWildcard
=== PAUSE TestEgressFirewallAllowAllDomainsWildcard
=== CONT  TestEgressFirewallAllowAllDomainsWildcard
    sandbox_network_out_test.go:601: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowAllDomainsWildcard (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowAllDuplicate

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowAllDuplicate
=== PAUSE TestEgressFirewallAllowAllDuplicate
=== CONT  TestEgressFirewallAllowAllDuplicate
    sandbox_network_out_test.go:471: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowAllDuplicate (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowAndBlockCombination

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowAndBlockCombination
=== PAUSE TestEgressFirewallAllowAndBlockCombination
=== CONT  TestEgressFirewallAllowAndBlockCombination
    sandbox_network_out_test.go:211: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowAndBlockCombination (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowCIDRRange

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowCIDRRange
=== PAUSE TestEgressFirewallAllowCIDRRange
=== CONT  TestEgressFirewallAllowCIDRRange
    sandbox_network_out_test.go:161: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowCIDRRange (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowDomainAndIP

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowDomainAndIP
=== PAUSE TestEgressFirewallAllowDomainAndIP
=== CONT  TestEgressFirewallAllowDomainAndIP
    sandbox_network_out_test.go:654: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowDomainAndIP (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowDomainThroughBlockedInternet

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowDomainThroughBlockedInternet
=== PAUSE TestEgressFirewallAllowDomainThroughBlockedInternet
=== CONT  TestEgressFirewallAllowDomainThroughBlockedInternet
    sandbox_network_out_test.go:522: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowDomainThroughBlockedInternet (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowOverridesBlock

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 21.2s run time
=== RUN   TestEgressFirewallAllowOverridesBlock
=== PAUSE TestEgressFirewallAllowOverridesBlock
=== CONT  TestEgressFirewallAllowOverridesBlock
    sandbox_network_out_test.go:328: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowOverridesBlock (21.18s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowSpecificIP

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowSpecificIP
=== PAUSE TestEgressFirewallAllowSpecificIP
=== CONT  TestEgressFirewallAllowSpecificIP
    sandbox_network_out_test.go:110: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowSpecificIP (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallAllowWildcardDomainThroughBlockedInternet

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallAllowWildcardDomainThroughBlockedInternet
=== PAUSE TestEgressFirewallAllowWildcardDomainThroughBlockedInternet
=== CONT  TestEgressFirewallAllowWildcardDomainThroughBlockedInternet
    sandbox_network_out_test.go:548: Network test template was not built successfully
--- FAIL: TestEgressFirewallAllowWildcardDomainThroughBlockedInternet (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallBlockCIDRRange

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallBlockCIDRRange
=== PAUSE TestEgressFirewallBlockCIDRRange
=== CONT  TestEgressFirewallBlockCIDRRange
    sandbox_network_out_test.go:186: Network test template was not built successfully
--- FAIL: TestEgressFirewallBlockCIDRRange (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallBlockSpecificIP

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallBlockSpecificIP
=== PAUSE TestEgressFirewallBlockSpecificIP
=== CONT  TestEgressFirewallBlockSpecificIP
    sandbox_network_out_test.go:136: Network test template was not built successfully
--- FAIL: TestEgressFirewallBlockSpecificIP (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallDNSSpoofingNeutralized

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallDNSSpoofingNeutralized
=== PAUSE TestEgressFirewallDNSSpoofingNeutralized
=== CONT  TestEgressFirewallDNSSpoofingNeutralized
    sandbox_network_out_test.go:846: Network test template was not built successfully
--- FAIL: TestEgressFirewallDNSSpoofingNeutralized (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallDomainCaseInsensitive

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallDomainCaseInsensitive
=== PAUSE TestEgressFirewallDomainCaseInsensitive
=== CONT  TestEgressFirewallDomainCaseInsensitive
    sandbox_network_out_test.go:628: Network test template was not built successfully
--- FAIL: TestEgressFirewallDomainCaseInsensitive (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallDomainPersistsAfterResume

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallDomainPersistsAfterResume
=== PAUSE TestEgressFirewallDomainPersistsAfterResume
=== CONT  TestEgressFirewallDomainPersistsAfterResume
    sandbox_network_out_test.go:710: Network test template was not built successfully
--- FAIL: TestEgressFirewallDomainPersistsAfterResume (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallEmptyConfig

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallEmptyConfig
=== PAUSE TestEgressFirewallEmptyConfig
=== CONT  TestEgressFirewallEmptyConfig
    sandbox_network_out_test.go:280: Network test template was not built successfully
--- FAIL: TestEgressFirewallEmptyConfig (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallExactDomainMatchVsSubdomain

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallExactDomainMatchVsSubdomain
=== PAUSE TestEgressFirewallExactDomainMatchVsSubdomain
=== CONT  TestEgressFirewallExactDomainMatchVsSubdomain
    sandbox_network_out_test.go:575: Network test template was not built successfully
--- FAIL: TestEgressFirewallExactDomainMatchVsSubdomain (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallHTTPDomainFiltering

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallHTTPDomainFiltering
=== PAUSE TestEgressFirewallHTTPDomainFiltering
=== CONT  TestEgressFirewallHTTPDomainFiltering
    sandbox_network_out_test.go:758: Network test template was not built successfully
--- FAIL: TestEgressFirewallHTTPDomainFiltering (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallHTTPSByIPNoHostname

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallHTTPSByIPNoHostname
=== PAUSE TestEgressFirewallHTTPSByIPNoHostname
=== CONT  TestEgressFirewallHTTPSByIPNoHostname
    sandbox_network_out_test.go:683: Network test template was not built successfully
--- FAIL: TestEgressFirewallHTTPSByIPNoHostname (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallMultipleAllowedIPs

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 34.8s run time
=== RUN   TestEgressFirewallMultipleAllowedIPs
=== PAUSE TestEgressFirewallMultipleAllowedIPs
=== CONT  TestEgressFirewallMultipleAllowedIPs
    sandbox_network_out_test.go:354: Network test template was not built successfully
--- FAIL: TestEgressFirewallMultipleAllowedIPs (34.84s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallPersistsAfterResume

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallPersistsAfterResume
=== PAUSE TestEgressFirewallPersistsAfterResume
=== CONT  TestEgressFirewallPersistsAfterResume
    sandbox_network_out_test.go:237: Network test template was not built successfully
--- FAIL: TestEgressFirewallPersistsAfterResume (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallPrivateIPRangesAlwaysBlocked

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 38s run time
=== RUN   TestEgressFirewallPrivateIPRangesAlwaysBlocked
=== PAUSE TestEgressFirewallPrivateIPRangesAlwaysBlocked
=== CONT  TestEgressFirewallPrivateIPRangesAlwaysBlocked
    sandbox_network_out_test.go:30: Building custom template for network egress tests...
    template.go:44: network-egress-test: [info] Building template 22jywboaqpp6zl49g1ug/a3ad73bb-0044-41ed-a9a4-a5dd00b189f8
    template.go:44: network-egress-test: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    template.go:44: network-egress-test: [info] Base Docker image size: 30 MB
    template.go:44: network-egress-test: [info] Creating file system and pulling Docker image
    template.go:44: network-egress-test: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    template.go:44: network-egress-test: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    template.go:44: network-egress-test: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    template.go:44: network-egress-test: [info] Layers extracted
    template.go:44: network-egress-test: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    template.go:44: network-egress-test: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    sandbox_network_out_test.go:32: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestEgressFirewallPrivateIPRangesAlwaysBlocked (37.96s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallRegularIPThenAllowAll

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallRegularIPThenAllowAll
=== PAUSE TestEgressFirewallRegularIPThenAllowAll
=== CONT  TestEgressFirewallRegularIPThenAllowAll
    sandbox_network_out_test.go:496: Network test template was not built successfully
--- FAIL: TestEgressFirewallRegularIPThenAllowAll (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallUDPAllowedCIDR

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallUDPAllowedCIDR
=== PAUSE TestEgressFirewallUDPAllowedCIDR
=== CONT  TestEgressFirewallUDPAllowedCIDR
    sandbox_network_out_test.go:814: Network test template was not built successfully
--- FAIL: TestEgressFirewallUDPAllowedCIDR (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallUDPAllowedIP

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestEgressFirewallUDPAllowedIP
=== PAUSE TestEgressFirewallUDPAllowedIP
=== CONT  TestEgressFirewallUDPAllowedIP
    sandbox_network_out_test.go:788: Network test template was not built successfully
--- FAIL: TestEgressFirewallUDPAllowedIP (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestEgressFirewallWithInternetAccessFalse

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 38s run time
=== RUN   TestEgressFirewallWithInternetAccessFalse
=== PAUSE TestEgressFirewallWithInternetAccessFalse
=== CONT  TestEgressFirewallWithInternetAccessFalse
    sandbox_network_out_test.go:381: Network test template was not built successfully
--- FAIL: TestEgressFirewallWithInternetAccessFalse (37.96s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestGPGKeyserverWorks

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestGPGKeyserverWorks
=== PAUSE TestGPGKeyserverWorks
=== CONT  TestGPGKeyserverWorks
    sandbox_network_out_test.go:978: Network test template was not built successfully
--- FAIL: TestGPGKeyserverWorks (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestNoNetworkConfig_SSHWorks

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestNoNetworkConfig_SSHWorks
=== PAUSE TestNoNetworkConfig_SSHWorks
=== CONT  TestNoNetworkConfig_SSHWorks
    sandbox_network_out_test.go:900: Network test template was not built successfully
--- FAIL: TestNoNetworkConfig_SSHWorks (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestUpdateNetworkConfig

Flake rate in main: 69.70% (Passed 20 times, Failed 46 times)

Stack Traces | 0s run time
=== RUN   TestUpdateNetworkConfig
=== PAUSE TestUpdateNetworkConfig
=== CONT  TestUpdateNetworkConfig
    sandbox_network_update_test.go:70: Network test template was not built successfully
--- FAIL: TestUpdateNetworkConfig (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/sandboxes::TestWithNetworkConfig_SSHWorks

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestWithNetworkConfig_SSHWorks
=== PAUSE TestWithNetworkConfig_SSHWorks
=== CONT  TestWithNetworkConfig_SSHWorks
    sandbox_network_out_test.go:935: Network test template was not built successfully
--- FAIL: TestWithNetworkConfig_SSHWorks (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestAssignmentOrderingAfterTagReassignment

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 50.7s run time
=== RUN   TestAssignmentOrderingAfterTagReassignment
=== PAUSE TestAssignmentOrderingAfterTagReassignment
=== CONT  TestAssignmentOrderingAfterTagReassignment
    template_tags_test.go:590: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestAssignmentOrderingAfterTagReassignment (50.74s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestAssignmentOrderingLatestWins

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 39.8s run time
=== RUN   TestAssignmentOrderingLatestWins
=== PAUSE TestAssignmentOrderingLatestWins
=== CONT  TestAssignmentOrderingLatestWins
    template_tags_test.go:523: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestAssignmentOrderingLatestWins (39.75s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestDeleteTemplate

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 24.6s run time
=== RUN   TestDeleteTemplate
=== PAUSE TestDeleteTemplate
=== CONT  TestDeleteTemplate
    build_template_test.go:134: test-to-delete: [info] Building template djxxi02rm4c6ctxpd7kw/18cbf205-18f6-4021-9069-7d20d71dfe51
    build_template_test.go:134: test-to-delete: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-to-delete: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-to-delete: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-to-delete: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-to-delete: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-to-delete: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-to-delete: [info] Layers extracted
    build_template_test.go:134: test-to-delete: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-to-delete: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    delete_template_test.go:19: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestDeleteTemplate (24.55s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestDeleteTemplateFromAnotherTeamAPIKey

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 25.6s run time
=== RUN   TestDeleteTemplateFromAnotherTeamAPIKey
=== PAUSE TestDeleteTemplateFromAnotherTeamAPIKey
=== CONT  TestDeleteTemplateFromAnotherTeamAPIKey
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] Building template t0nzbewbr18mhy7fi2a0/437c8fd6-7b83-485c-b46e-81d3ba30b731
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] Layers extracted
    build_template_test.go:134: test-to-delete-another-team-api-key: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-to-delete-another-team-api-key: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    delete_template_test.go:90: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestDeleteTemplateFromAnotherTeamAPIKey (25.55s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestDeleteTemplateFromAnotherTeamAccessToken

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 24.5s run time
=== RUN   TestDeleteTemplateFromAnotherTeamAccessToken
=== PAUSE TestDeleteTemplateFromAnotherTeamAccessToken
=== CONT  TestDeleteTemplateFromAnotherTeamAccessToken
    delete_template_test.go:68: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestDeleteTemplateFromAnotherTeamAccessToken (24.53s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestDeleteTemplateWithAccessToken

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 24.6s run time
=== RUN   TestDeleteTemplateWithAccessToken
=== PAUSE TestDeleteTemplateWithAccessToken
=== CONT  TestDeleteTemplateWithAccessToken
    delete_template_test.go:47: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestDeleteTemplateWithAccessToken (24.55s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestMultipleTagsOnSameTemplate

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 50.8s run time
=== RUN   TestMultipleTagsOnSameTemplate
=== PAUSE TestMultipleTagsOnSameTemplate
=== CONT  TestMultipleTagsOnSameTemplate
    template_tags_test.go:286: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestMultipleTagsOnSameTemplate (50.75s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestSandboxCreateWithAliasAndTag

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 19.1s run time
=== RUN   TestSandboxCreateWithAliasAndTag
=== PAUSE TestSandboxCreateWithAliasAndTag
=== CONT  TestSandboxCreateWithAliasAndTag
    template_tags_test.go:208: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestSandboxCreateWithAliasAndTag (19.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestSandboxCreateWithTag

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestSandboxCreateWithTag
=== PAUSE TestSandboxCreateWithTag
=== CONT  TestSandboxCreateWithTag
    template_tags_test.go:116: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestSandboxCreateWithTag (18.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTagReassignment

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 19.2s run time
=== RUN   TestTagReassignment
=== PAUSE TestTagReassignment
=== CONT  TestTagReassignment
    template_tags_test.go:330: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTagReassignment (19.24s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildCOPY

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildCOPY
=== PAUSE TestTemplateBuildCOPY
=== CONT  TestTemplateBuildCOPY
    build_template_test.go:134: test-ubuntu-copy: [info] Building template khofxiaac4spzfhzsu5z/d13a766b-8a20-4c4f-bc50-97cea4a0d0c1
    build_template_test.go:134: test-ubuntu-copy: [info] [base] FROM ubuntu:24.04 [33c3d1f55ae33f402733ec22d91cfbce7572f860c9bb4d15b497c19d978167b5]
    build_template_test.go:134: test-ubuntu-copy: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-copy: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-copy: [info] Uncompressing layer sha256:b40150c1c2717d324cdb17278c8efdfa4dfcd2ffe083e976f0bcedf31115f081 30 MB
    build_template_test.go:134: test-ubuntu-copy: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-copy: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-copy: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-copy: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib64, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-copy: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:1153: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildCOPY (18.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildCache

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildCache
=== PAUSE TestTemplateBuildCache
=== CONT  TestTemplateBuildCache
    build_template_test.go:134: test-ubuntu-cache: [info] Building template m7bhkx58u5xqlesdvaqe/80c8cf13-1dc5-4340-8766-ee323e08833a
    build_template_test.go:134: test-ubuntu-cache: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-cache: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-cache: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-cache: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-cache: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-cache: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-cache: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-cache: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-cache: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:452: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildCache (18.12s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV

Flake rate in main: 50.00% (Passed 16 times, Failed 16 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildENV
=== PAUSE TestTemplateBuildENV
=== CONT  TestTemplateBuildENV
--- FAIL: TestTemplateBuildENV (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_blocks_command_substitution_with_backticks

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 19.3s run time
=== RUN   TestTemplateBuildENV/ENV_blocks_command_substitution_with_backticks
=== PAUSE TestTemplateBuildENV/ENV_blocks_command_substitution_with_backticks
=== CONT  TestTemplateBuildENV/ENV_blocks_command_substitution_with_backticks
    build_template_test.go:134: test-ubuntu-env-backticks: [info] Building template bgyo6p23ivepax6herx6/6b9cc195-3a3c-4164-8cde-f3d4753f7c53
    build_template_test.go:134: test-ubuntu-env-backticks: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-backticks: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-backticks: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-backticks: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-backticks: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-backticks: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-backticks: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-backticks: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-backticks: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_blocks_command_substitution_with_backticks (19.27s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_blocks_command_substitution_with_dollar_paren

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.2s run time
=== RUN   TestTemplateBuildENV/ENV_blocks_command_substitution_with_dollar_paren
=== PAUSE TestTemplateBuildENV/ENV_blocks_command_substitution_with_dollar_paren
=== CONT  TestTemplateBuildENV/ENV_blocks_command_substitution_with_dollar_paren
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] Building template a1lxdlqca3jar5czmye7/46bfedc0-edeb-409b-9991-52660e92110b
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-dollarparen: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-dollarparen: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_blocks_command_substitution_with_dollar_paren (18.24s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_variable_persistence

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 19.1s run time
=== RUN   TestTemplateBuildENV/ENV_variable_persistence
=== PAUSE TestTemplateBuildENV/ENV_variable_persistence
=== CONT  TestTemplateBuildENV/ENV_variable_persistence
    build_template_test.go:134: test-ubuntu-env: [info] Building template vn2z83zhgl7prgk0cigw/a197ea36-2a3f-4b92-8cdb-a6785e7930f6
    build_template_test.go:134: test-ubuntu-env: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_variable_persistence (19.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_variable_persistence_for_start_command

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 19.1s run time
=== RUN   TestTemplateBuildENV/ENV_variable_persistence_for_start_command
=== PAUSE TestTemplateBuildENV/ENV_variable_persistence_for_start_command
=== CONT  TestTemplateBuildENV/ENV_variable_persistence_for_start_command
    build_template_test.go:134: test-ubuntu-env-start: [info] Building template 01wxhddpze80depgzqtg/fa99c74c-813d-496e-b820-51658a1dabc5
    build_template_test.go:134: test-ubuntu-env-start: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-start: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-start: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-start: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-start: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-start: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-start: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-start: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-start: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_variable_persistence_for_start_command (19.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_variable_recursive

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 19.1s run time
=== RUN   TestTemplateBuildENV/ENV_variable_recursive
=== PAUSE TestTemplateBuildENV/ENV_variable_recursive
=== CONT  TestTemplateBuildENV/ENV_variable_recursive
    build_template_test.go:134: test-ubuntu-env-recursive: [info] Building template 8bfkhvivt2vce7mq1lg5/b651f2fd-17a9-4605-9133-840f0e9866b8
    build_template_test.go:134: test-ubuntu-env-recursive: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-recursive: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-recursive: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-recursive: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-recursive: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-recursive: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-recursive: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-recursive: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-recursive: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_variable_recursive (19.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_with_PEM-style_dashes

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 20.2s run time
=== RUN   TestTemplateBuildENV/ENV_with_PEM-style_dashes
=== PAUSE TestTemplateBuildENV/ENV_with_PEM-style_dashes
=== CONT  TestTemplateBuildENV/ENV_with_PEM-style_dashes
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] Building template 4o0iem9mcn2cu9nin3hk/4f04475c-ca79-42fb-9b23-f2858127e214
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-pem-dashes: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_with_PEM-style_dashes (20.17s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_with_backslashes

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 20.3s run time
=== RUN   TestTemplateBuildENV/ENV_with_backslashes
=== PAUSE TestTemplateBuildENV/ENV_with_backslashes
=== CONT  TestTemplateBuildENV/ENV_with_backslashes
    build_template_test.go:134: test-ubuntu-env-backslash: [info] Building template 6i8so57o5lsba4w4r81i/06f01380-b6b9-4094-8890-f56b3abc89ca
    build_template_test.go:134: test-ubuntu-env-backslash: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-backslash: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-backslash: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-backslash: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-backslash: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-backslash: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-backslash: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-backslash: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-backslash: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_with_backslashes (20.28s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_with_double_quotes

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildENV/ENV_with_double_quotes
=== PAUSE TestTemplateBuildENV/ENV_with_double_quotes
=== CONT  TestTemplateBuildENV/ENV_with_double_quotes
    build_template_test.go:134: test-ubuntu-env-quotes: [info] Building template xxhdz4ebnvzx2b314o0f/a1e1b30a-afc0-4b83-afdc-0aa5d8cd71a2
    build_template_test.go:134: test-ubuntu-env-quotes: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-quotes: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-quotes: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-quotes: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-quotes: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-quotes: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-quotes: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-quotes: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-quotes: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_with_double_quotes (18.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_with_multiline_value

Flake rate in main: 59.09% (Passed 9 times, Failed 13 times)

Stack Traces | 20.3s run time
=== RUN   TestTemplateBuildENV/ENV_with_multiline_value
=== PAUSE TestTemplateBuildENV/ENV_with_multiline_value
=== CONT  TestTemplateBuildENV/ENV_with_multiline_value
    build_template_test.go:134: test-ubuntu-env-multiline: [info] Building template q4insocy03w5xszi7y38/c81fc196-4a89-48f4-9367-570acb74b336
    build_template_test.go:134: test-ubuntu-env-multiline: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-multiline: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-multiline: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-multiline: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-multiline: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-multiline: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-multiline: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-multiline: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-multiline: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_with_multiline_value (20.28s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildENV/ENV_with_single_quotes

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.2s run time
=== RUN   TestTemplateBuildENV/ENV_with_single_quotes
=== PAUSE TestTemplateBuildENV/ENV_with_single_quotes
=== CONT  TestTemplateBuildENV/ENV_with_single_quotes
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] Building template yd3axlalvi7g9zdlvpki/d113e70a-5f59-4b54-9a7c-55bde898cb82
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-env-single-quotes: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-env-single-quotes: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:374: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildENV/ENV_with_single_quotes (18.25s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplate

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildFromTemplate
=== PAUSE TestTemplateBuildFromTemplate
=== CONT  TestTemplateBuildFromTemplate
--- FAIL: TestTemplateBuildFromTemplate (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplate/Basic_fromTemplate_functionality

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.2s run time
=== RUN   TestTemplateBuildFromTemplate/Basic_fromTemplate_functionality
=== PAUSE TestTemplateBuildFromTemplate/Basic_fromTemplate_functionality
=== CONT  TestTemplateBuildFromTemplate/Basic_fromTemplate_functionality
    build_template_test.go:134: test-ubuntu-base-template: [info] Building template rsnjnvlw8zijv467jhlg/d52d8887-7dcf-4958-9e80-ae2dbda9325b
    build_template_test.go:134: test-ubuntu-base-template: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-base-template: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-base-template: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-base-template: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-base-template: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-base-template: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-base-template: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-base-template: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-base-template: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:522: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildFromTemplate/Basic_fromTemplate_functionality (18.24s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplateBaseCommandsInheritance

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildFromTemplateBaseCommandsInheritance
=== PAUSE TestTemplateBuildFromTemplateBaseCommandsInheritance
=== CONT  TestTemplateBuildFromTemplateBaseCommandsInheritance
--- FAIL: TestTemplateBuildFromTemplateBaseCommandsInheritance (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplateBaseCommandsInheritance/Start_command_inherited_from_base_template_uses_original_base_context

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 19.1s run time
=== RUN   TestTemplateBuildFromTemplateBaseCommandsInheritance/Start_command_inherited_from_base_template_uses_original_base_context
=== PAUSE TestTemplateBuildFromTemplateBaseCommandsInheritance/Start_command_inherited_from_base_template_uses_original_base_context
=== CONT  TestTemplateBuildFromTemplateBaseCommandsInheritance/Start_command_inherited_from_base_template_uses_original_base_context
    build_template_test.go:134: test-ubuntu-base-with-start: [info] Building template obqagdlh0cnxcqr6wevj/b5626b6b-4d70-41c2-bedc-575d2db07c34
    build_template_test.go:134: test-ubuntu-base-with-start: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-base-with-start: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-base-with-start: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-base-with-start: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-base-with-start: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-base-with-start: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-base-with-start: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-base-with-start: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-base-with-start: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:759: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildFromTemplateBaseCommandsInheritance/Start_command_inherited_from_base_template_uses_original_base_context (19.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplateCommandOverride

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildFromTemplateCommandOverride
=== PAUSE TestTemplateBuildFromTemplateCommandOverride
=== CONT  TestTemplateBuildFromTemplateCommandOverride
--- FAIL: TestTemplateBuildFromTemplateCommandOverride (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplateCommandOverride/Start_command_override_in_derived_template

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.2s run time
=== RUN   TestTemplateBuildFromTemplateCommandOverride/Start_command_override_in_derived_template
=== PAUSE TestTemplateBuildFromTemplateCommandOverride/Start_command_override_in_derived_template
=== CONT  TestTemplateBuildFromTemplateCommandOverride/Start_command_override_in_derived_template
    build_template_test.go:134: test-ubuntu-base-override-start: [info] Building template qlyavovcr5u6kwp64mc8/0ab24c95-5a32-49ed-9c61-5fd7363232b7
    build_template_test.go:134: test-ubuntu-base-override-start: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-base-override-start: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-base-override-start: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-base-override-start: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-base-override-start: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-base-override-start: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-base-override-start: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-base-override-start: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-base-override-start: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:592: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildFromTemplateCommandOverride/Start_command_override_in_derived_template (18.24s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplateInheritance

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildFromTemplateInheritance
=== PAUSE TestTemplateBuildFromTemplateInheritance
=== CONT  TestTemplateBuildFromTemplateInheritance
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] Building template oa0wn023pnrahba2xc18/320372af-dc62-47e9-8aed-363142f9e98e
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-inheritance-base: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-inheritance-base: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:655: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildFromTemplateInheritance (18.12s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplateLayered

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildFromTemplateLayered
=== PAUSE TestTemplateBuildFromTemplateLayered
=== CONT  TestTemplateBuildFromTemplateLayered
--- FAIL: TestTemplateBuildFromTemplateLayered (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplateLayered/Three-level_template_inheritance_with_ENV_accumulation

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildFromTemplateLayered/Three-level_template_inheritance_with_ENV_accumulation
=== PAUSE TestTemplateBuildFromTemplateLayered/Three-level_template_inheritance_with_ENV_accumulation
=== CONT  TestTemplateBuildFromTemplateLayered/Three-level_template_inheritance_with_ENV_accumulation
    build_template_test.go:134: test-ubuntu-layered-base: [info] Building template nafgnxk0i4atjul756ca/8abe0880-0f2f-4b50-9b44-125252b61635
    build_template_test.go:134: test-ubuntu-layered-base: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-layered-base: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-layered-base: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-layered-base: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-layered-base: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-layered-base: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-layered-base: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-layered-base: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-layered-base: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:845: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildFromTemplateLayered/Three-level_template_inheritance_with_ENV_accumulation (18.15s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFromTemplateStartCommand

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildFromTemplateStartCommand
=== PAUSE TestTemplateBuildFromTemplateStartCommand
=== CONT  TestTemplateBuildFromTemplateStartCommand
    build_template_test.go:134: test-ubuntu-start-base: [info] Building template 19myf5thz3us0rwsbjuq/d47312bb-601a-49ab-95da-6600473b5d9a
    build_template_test.go:134: test-ubuntu-start-base: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-start-base: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-start-base: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-start-base: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-start-base: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-start-base: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-start-base: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-start-base: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-start-base: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:701: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildFromTemplateStartCommand (18.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildFuseConfiguration

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 38.9s run time
=== RUN   TestTemplateBuildFuseConfiguration
=== PAUSE TestTemplateBuildFuseConfiguration
=== CONT  TestTemplateBuildFuseConfiguration
    build_template_test.go:134: test-ubuntu-fuse-config: [info] Building template ygzx3t1jopm5epzm2vbs/8ab9887b-aa03-4b99-82bc-4f93999af832
    build_template_test.go:134: test-ubuntu-fuse-config: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-fuse-config: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-fuse-config: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-fuse-config: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-fuse-config: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-fuse-config: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-fuse-config: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-fuse-config: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-fuse-config: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:1186: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildFuseConfiguration (38.92s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildInstalledPackagesAvailable

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildInstalledPackagesAvailable
=== PAUSE TestTemplateBuildInstalledPackagesAvailable
=== CONT  TestTemplateBuildInstalledPackagesAvailable
    build_template_test.go:134: test-ubuntu-packages-available: [info] Building template au2jz0tx4a73v58o8vum/85c373ca-7021-4ef7-a7da-249e1ba62471
    build_template_test.go:134: test-ubuntu-packages-available: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-packages-available: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-packages-available: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-packages-available: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-packages-available: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-packages-available: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-packages-available: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-packages-available: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-packages-available: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:1057: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildInstalledPackagesAvailable (18.12s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildRUN

Flake rate in main: 50.00% (Passed 16 times, Failed 16 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildRUN
=== PAUSE TestTemplateBuildRUN
=== CONT  TestTemplateBuildRUN
--- FAIL: TestTemplateBuildRUN (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildRUN/Single_RUN_command

Flake rate in main: 50.00% (Passed 16 times, Failed 16 times)

Stack Traces | 50.8s run time
=== RUN   TestTemplateBuildRUN/Single_RUN_command
=== PAUSE TestTemplateBuildRUN/Single_RUN_command
=== CONT  TestTemplateBuildRUN/Single_RUN_command
    build_template_test.go:134: test-ubuntu-run: [info] Building template m1iq3u9i9rgwz12zvm5k/8b37d810-dde6-487a-aa02-108b2a0ff6cd
    build_template_test.go:134: test-ubuntu-run: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-run: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-run: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-run: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-run: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-run: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-run: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-run: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-run: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:167: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildRUN/Single_RUN_command (50.75s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildStartReadyCommandExecution

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildStartReadyCommandExecution
=== PAUSE TestTemplateBuildStartReadyCommandExecution
=== CONT  TestTemplateBuildStartReadyCommandExecution
--- FAIL: TestTemplateBuildStartReadyCommandExecution (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildStartReadyCommandExecution/Complex_Start_and_Ready_commands_with_environment_variables

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildStartReadyCommandExecution/Complex_Start_and_Ready_commands_with_environment_variables
=== PAUSE TestTemplateBuildStartReadyCommandExecution/Complex_Start_and_Ready_commands_with_environment_variables
=== CONT  TestTemplateBuildStartReadyCommandExecution/Complex_Start_and_Ready_commands_with_environment_variables
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] Building template bn9pbzl3uforvhse3g0u/8548159d-9460-4d1e-994c-526a0d5413f2
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-complex-start-ready: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-complex-start-ready: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:926: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildStartReadyCommandExecution/Complex_Start_and_Ready_commands_with_environment_variables (18.15s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildStartReadyCommandExecution/Start_and_Ready_commands_are_executed

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildStartReadyCommandExecution/Start_and_Ready_commands_are_executed
=== PAUSE TestTemplateBuildStartReadyCommandExecution/Start_and_Ready_commands_are_executed
=== CONT  TestTemplateBuildStartReadyCommandExecution/Start_and_Ready_commands_are_executed
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] Building template n55lf2ry8xwrbr93okjo/f6a04d73-61e5-49f4-ab68-17666646c7c6
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-start-ready-execution: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-start-ready-execution: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:926: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildStartReadyCommandExecution/Start_and_Ready_commands_are_executed (18.12s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildWORKDIR

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildWORKDIR
=== PAUSE TestTemplateBuildWORKDIR
=== CONT  TestTemplateBuildWORKDIR
--- FAIL: TestTemplateBuildWORKDIR (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildWORKDIR/WORKDIR_persistence

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.2s run time
=== RUN   TestTemplateBuildWORKDIR/WORKDIR_persistence
=== PAUSE TestTemplateBuildWORKDIR/WORKDIR_persistence
=== CONT  TestTemplateBuildWORKDIR/WORKDIR_persistence
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] Building template bczmz61co1cvo6f5ywwz/4f44080f-81bd-4d95-92e4-d6831fb27bb4
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-workdir-persistence: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-workdir-persistence: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:429: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildWORKDIR/WORKDIR_persistence (18.24s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildWORKDIR/WORKDIR_persistence_in_start_command

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.2s run time
=== RUN   TestTemplateBuildWORKDIR/WORKDIR_persistence_in_start_command
=== PAUSE TestTemplateBuildWORKDIR/WORKDIR_persistence_in_start_command
=== CONT  TestTemplateBuildWORKDIR/WORKDIR_persistence_in_start_command
    build_template_test.go:134: test-ubuntu-workdir-start: [info] Building template vbcrwbgoy6ldw82sqxyg/826f3032-0784-4d4f-bc3c-c90600896942
    build_template_test.go:134: test-ubuntu-workdir-start: [info] [base] FROM ubuntu:22.04 [ffd709f131f42dfab282de47a91dd2c139e900c1c11fc574b49b517a05ef0a32]
    build_template_test.go:134: test-ubuntu-workdir-start: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-workdir-start: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-workdir-start: [info] Uncompressing layer sha256:f63eb04151bcac21ad049f8d781b97b219aba392c5457907f8f3e88e43eb48ec 30 MB
    build_template_test.go:134: test-ubuntu-workdir-start: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-workdir-start: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-workdir-start: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-workdir-start: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib32, lib64, libx32, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-workdir-start: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:429: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildWORKDIR/WORKDIR_persistence_in_start_command (18.24s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildWithDifferentSourceImages

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0s run time
=== RUN   TestTemplateBuildWithDifferentSourceImages
=== PAUSE TestTemplateBuildWithDifferentSourceImages
=== CONT  TestTemplateBuildWithDifferentSourceImages
--- FAIL: TestTemplateBuildWithDifferentSourceImages (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildWithDifferentSourceImages/Test_with_Ubuntu_24.04_base_image

Flake rate in main: 57.14% (Passed 9 times, Failed 12 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateBuildWithDifferentSourceImages/Test_with_Ubuntu_24.04_base_image
=== PAUSE TestTemplateBuildWithDifferentSourceImages/Test_with_Ubuntu_24.04_base_image
=== CONT  TestTemplateBuildWithDifferentSourceImages/Test_with_Ubuntu_24.04_base_image
    build_template_test.go:134: test-ubuntu-24-04-source: [info] Building template 3jjxv8vswkyb2dgefe40/4794f8c4-9b77-4634-816c-8625ff7fea1a
    build_template_test.go:134: test-ubuntu-24-04-source: [info] [base] FROM ubuntu:24.04 [33c3d1f55ae33f402733ec22d91cfbce7572f860c9bb4d15b497c19d978167b5]
    build_template_test.go:134: test-ubuntu-24-04-source: [info] Base Docker image size: 30 MB
    build_template_test.go:134: test-ubuntu-24-04-source: [info] Creating file system and pulling Docker image
    build_template_test.go:134: test-ubuntu-24-04-source: [info] Uncompressing layer sha256:b40150c1c2717d324cdb17278c8efdfa4dfcd2ffe083e976f0bcedf31115f081 30 MB
    build_template_test.go:134: test-ubuntu-24-04-source: [info] Uncompressing layer sha256:bd42692833eb9b8bc195548f3e997ea19d651ac621b4e0e53e678e555706be5b 12 MB
    build_template_test.go:134: test-ubuntu-24-04-source: [info] Uncompressing layer sha256:8c4b1b28875140ed3abacaf16ad0d696f6bef912f52d2148f261a23e3349465b 168 B
    build_template_test.go:134: test-ubuntu-24-04-source: [info] Layers extracted
    build_template_test.go:134: test-ubuntu-24-04-source: [info] Root filesystem structure: bin, boot, dev, etc, home, lib, lib64, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
    build_template_test.go:134: test-ubuntu-24-04-source: [error] Build failed: An internal error occurred. Please try again or contact support with the build ID.
    build_template_test.go:1005: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildWithDifferentSourceImages/Test_with_Ubuntu_24.04_base_image (18.14s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildWithTagInAlias

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 40.1s run time
=== RUN   TestTemplateBuildWithTagInAlias
=== PAUSE TestTemplateBuildWithTagInAlias
=== CONT  TestTemplateBuildWithTagInAlias
    template_tags_test.go:476: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildWithTagInAlias (40.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildWithTags

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 19.2s run time
=== RUN   TestTemplateBuildWithTags
=== PAUSE TestTemplateBuildWithTags
=== CONT  TestTemplateBuildWithTags
    template_tags_test.go:395: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildWithTags (19.24s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateBuildWithTagsAndSandboxCreation

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 39.8s run time
=== RUN   TestTemplateBuildWithTagsAndSandboxCreation
=== PAUSE TestTemplateBuildWithTagsAndSandboxCreation
=== CONT  TestTemplateBuildWithTagsAndSandboxCreation
    template_tags_test.go:434: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateBuildWithTagsAndSandboxCreation (39.76s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateTagAssign

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateTagAssign
=== PAUSE TestTemplateTagAssign
=== CONT  TestTemplateTagAssign
    template_tags_test.go:29: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateTagAssign (18.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateTagAssignFromSourceTag

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateTagAssignFromSourceTag
=== PAUSE TestTemplateTagAssignFromSourceTag
=== CONT  TestTemplateTagAssignFromSourceTag
    template_tags_test.go:60: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateTagAssignFromSourceTag (18.12s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestTemplateTagDeleteLatestNotAllowed

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 18.1s run time
=== RUN   TestTemplateTagDeleteLatestNotAllowed
=== PAUSE TestTemplateTagDeleteLatestNotAllowed
=== CONT  TestTemplateTagDeleteLatestNotAllowed
    template_tags_test.go:95: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestTemplateTagDeleteLatestNotAllowed (18.13s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestUpdateTemplateNotOwnedByTeam

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 50.8s run time
=== RUN   TestUpdateTemplateNotOwnedByTeam
=== PAUSE TestUpdateTemplateNotOwnedByTeam
=== CONT  TestUpdateTemplateNotOwnedByTeam
    template_update_test.go:206: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestUpdateTemplateNotOwnedByTeam (50.78s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestUpdateTemplateVisibilityToPrivateWithAPIKey

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 47.5s run time
=== RUN   TestUpdateTemplateVisibilityToPrivateWithAPIKey
=== PAUSE TestUpdateTemplateVisibilityToPrivateWithAPIKey
=== CONT  TestUpdateTemplateVisibilityToPrivateWithAPIKey
    template_update_test.go:58: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestUpdateTemplateVisibilityToPrivateWithAPIKey (47.48s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestUpdateTemplateVisibilityToPublicWithAPIKey

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 45.4s run time
=== RUN   TestUpdateTemplateVisibilityToPublicWithAPIKey
=== PAUSE TestUpdateTemplateVisibilityToPublicWithAPIKey
=== CONT  TestUpdateTemplateVisibilityToPublicWithAPIKey
    template_update_test.go:19: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestUpdateTemplateVisibilityToPublicWithAPIKey (45.44s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestUpdateTemplateWithInvalidAPIKey

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 45.5s run time
=== RUN   TestUpdateTemplateWithInvalidAPIKey
=== PAUSE TestUpdateTemplateWithInvalidAPIKey
=== CONT  TestUpdateTemplateWithInvalidAPIKey
    template_update_test.go:108: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestUpdateTemplateWithInvalidAPIKey (45.47s)
github.com/e2b-dev/infra/tests/integration/internal/tests/api/templates::TestUpdateTemplateWithSupabaseToken

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 45.5s run time
=== RUN   TestUpdateTemplateWithSupabaseToken
=== PAUSE TestUpdateTemplateWithSupabaseToken
=== CONT  TestUpdateTemplateWithSupabaseToken
    template_update_test.go:149: Build failed: {<nil> An internal error occurred. Please try again or contact support with the build ID. <nil>}
--- FAIL: TestUpdateTemplateWithSupabaseToken (45.47s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestBindLocalhost

Flake rate in main: 48.08% (Passed 27 times, Failed 25 times)

Stack Traces | 0s run time
=== RUN   TestBindLocalhost
=== PAUSE TestBindLocalhost
=== CONT  TestBindLocalhost
--- FAIL: TestBindLocalhost (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestBindLocalhost/bind_0_0_0_0

Flake rate in main: 54.29% (Passed 16 times, Failed 19 times)

Stack Traces | 9.81s run time
=== RUN   TestBindLocalhost/bind_0_0_0_0
=== PAUSE TestBindLocalhost/bind_0_0_0_0
=== CONT  TestBindLocalhost/bind_0_0_0_0
    localhost_bind_test.go:69: Command [python] output: event:{start:{pid:1258}}
Executing command python in sandbox idrijfkm5ho1outzxaf9r
    localhost_bind_test.go:90: 
        	Error Trace:	.../tests/envd/localhost_bind_test.go:90
        	Error:      	Not equal: 
        	            	expected: 200
        	            	actual  : 502
        	Test:       	TestBindLocalhost/bind_0_0_0_0
        	Messages:   	Unexpected status code 502 for bind address 0.0.0.0
Executing command python in sandbox ipm34vqdpanys3ltb0kj8
--- FAIL: TestBindLocalhost/bind_0_0_0_0 (9.81s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestBindLocalhost/bind_127_0_0_1

Flake rate in main: 50.00% (Passed 17 times, Failed 17 times)

Stack Traces | 6.97s run time
=== RUN   TestBindLocalhost/bind_127_0_0_1
=== PAUSE TestBindLocalhost/bind_127_0_0_1
=== CONT  TestBindLocalhost/bind_127_0_0_1
    localhost_bind_test.go:69: Command [python] output: event:{start:{pid:1258}}
    localhost_bind_test.go:90: 
        	Error Trace:	.../tests/envd/localhost_bind_test.go:90
        	Error:      	Not equal: 
        	            	expected: 200
        	            	actual  : 502
        	Test:       	TestBindLocalhost/bind_127_0_0_1
        	Messages:   	Unexpected status code 502 for bind address 127.0.0.1
--- FAIL: TestBindLocalhost/bind_127_0_0_1 (6.97s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestBindLocalhost/bind_::1

Flake rate in main: 55.56% (Passed 16 times, Failed 20 times)

Stack Traces | 8.79s run time
=== RUN   TestBindLocalhost/bind_::1
=== PAUSE TestBindLocalhost/bind_::1
=== CONT  TestBindLocalhost/bind_::1
    localhost_bind_test.go:69: Command [python] output: event:{start:{pid:1258}}
    localhost_bind_test.go:90: 
        	Error Trace:	.../tests/envd/localhost_bind_test.go:90
        	Error:      	Not equal: 
        	            	expected: 200
        	            	actual  : 502
        	Test:       	TestBindLocalhost/bind_::1
        	Messages:   	Unexpected status code 502 for bind address ::1
--- FAIL: TestBindLocalhost/bind_::1 (8.79s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestBindLocalhost/bind_localhost

Flake rate in main: 55.56% (Passed 16 times, Failed 20 times)

Stack Traces | 11.9s run time
=== RUN   TestBindLocalhost/bind_localhost
=== PAUSE TestBindLocalhost/bind_localhost
=== CONT  TestBindLocalhost/bind_localhost
Executing command python in sandbox i6h7843rvyybe25p646d4
    localhost_bind_test.go:69: Command [python] output: event:{start:{pid:1258}}
    localhost_bind_test.go:90: 
        	Error Trace:	.../tests/envd/localhost_bind_test.go:90
        	Error:      	Not equal: 
        	            	expected: 200
        	            	actual  : 502
        	Test:       	TestBindLocalhost/bind_localhost
        	Messages:   	Unexpected status code 502 for bind address localhost
--- FAIL: TestBindLocalhost/bind_localhost (11.88s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestListDir

Flake rate in main: 44.12% (Passed 19 times, Failed 15 times)

Stack Traces | 1.18s run time
=== RUN   TestListDir
=== PAUSE TestListDir
=== CONT  TestListDir
Executing command cat in sandbox i5f9gbh0miv6vox8e4tsf (user: root)
--- FAIL: TestListDir (1.18s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestListDir/depth_0_lists_only_root_directory

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0.02s run time
=== RUN   TestListDir/depth_0_lists_only_root_directory
=== PAUSE TestListDir/depth_0_lists_only_root_directory
=== CONT  TestListDir/depth_0_lists_only_root_directory
    filesystem_test.go:97: 
        	Error Trace:	.../tests/envd/filesystem_test.go:97
        	Error:      	Received unexpected error:
        	            	unavailable: 502 Bad Gateway
        	Test:       	TestListDir/depth_0_lists_only_root_directory
--- FAIL: TestListDir/depth_0_lists_only_root_directory (0.02s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestListDir/depth_1_lists_root_directory

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0.01s run time
=== RUN   TestListDir/depth_1_lists_root_directory
=== PAUSE TestListDir/depth_1_lists_root_directory
=== CONT  TestListDir/depth_1_lists_root_directory
    filesystem_test.go:97: 
        	Error Trace:	.../tests/envd/filesystem_test.go:97
        	Error:      	Received unexpected error:
        	            	unavailable: 502 Bad Gateway
        	Test:       	TestListDir/depth_1_lists_root_directory
--- FAIL: TestListDir/depth_1_lists_root_directory (0.01s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestListDir/depth_2_lists_first_level_of_subdirectories_(in_this_case_the_root_directory)

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0.02s run time
=== RUN   TestListDir/depth_2_lists_first_level_of_subdirectories_(in_this_case_the_root_directory)
=== PAUSE TestListDir/depth_2_lists_first_level_of_subdirectories_(in_this_case_the_root_directory)
=== CONT  TestListDir/depth_2_lists_first_level_of_subdirectories_(in_this_case_the_root_directory)
    filesystem_test.go:97: 
        	Error Trace:	.../tests/envd/filesystem_test.go:97
        	Error:      	Received unexpected error:
        	            	unavailable: 502 Bad Gateway
        	Test:       	TestListDir/depth_2_lists_first_level_of_subdirectories_(in_this_case_the_root_directory)
--- FAIL: TestListDir/depth_2_lists_first_level_of_subdirectories_(in_this_case_the_root_directory) (0.02s)
github.com/e2b-dev/infra/tests/integration/internal/tests/envd::TestListDir/depth_3_lists_all_directories_and_files

Flake rate in main: 48.39% (Passed 16 times, Failed 15 times)

Stack Traces | 0.01s run time
=== RUN   TestListDir/depth_3_lists_all_directories_and_files
=== PAUSE TestListDir/depth_3_lists_all_directories_and_files
=== CONT  TestListDir/depth_3_lists_all_directories_and_files
    filesystem_test.go:97: 
        	Error Trace:	.../tests/envd/filesystem_test.go:97
        	Error:      	Received unexpected error:
        	            	unavailable: 502 Bad Gateway
        	Test:       	TestListDir/depth_3_lists_all_directories_and_files
--- FAIL: TestListDir/depth_3_lists_all_directories_and_files (0.01s)
github.com/e2b-dev/infra/tests/integration/internal/tests/orchestrator::TestSandboxMemoryIntegrity

Flake rate in main: 54.35% (Passed 21 times, Failed 25 times)

Stack Traces | 0s run time
=== RUN   TestSandboxMemoryIntegrity
=== PAUSE TestSandboxMemoryIntegrity
=== CONT  TestSandboxMemoryIntegrity
--- FAIL: TestSandboxMemoryIntegrity (0.00s)
github.com/e2b-dev/infra/tests/integration/internal/tests/orchestrator::TestSandboxMemoryIntegrity/stress-ng_verify

Flake rate in main: 56.76% (Passed 16 times, Failed 21 times)

Stack Traces | 31.2s run time
=== RUN   TestSandboxMemoryIntegrity/stress-ng_verify
=== PAUSE TestSandboxMemoryIntegrity/stress-ng_verify
=== CONT  TestSandboxMemoryIntegrity/stress-ng_verify
Executing command bash in sandbox igtja1qwtrwaznsoi7zx8 (user: root)
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{start:{pid:1258}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Hit:1 http://deb.debian.org/debian bookworm InRelease\nHit:2 http://deb.debian.org/debian bookworm-updates InRelease\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Reading package lists..."}}
Executing command bash in sandbox iv30hl6jpcld2vewrnv04 (user: root)
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Reading package lists..."}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"\n"}}
Executing command bash in sandbox in562je9x6rqyugshxbgf (user: root)
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Building dependency tree..."}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"\nReading state information..."}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"The following additional packages will be installed:\n  libdrm-common libdrm2 libegl-mesa0 libegl1 libgbm1 libglapi-mesa libgles2\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"  libglvnd0 libipsec-mb1 libjudydebian1 libsctp1 libwayland-client0\n  libwayland-server0 libx11-xcb1 libxcb-dri2-0 libxcb-dri3-0 libxcb-present0\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"  libxcb-randr0 libxcb-sync1 libxcb-xfixes0 libxshmfence1\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Suggested packages:\n  lksctp-tools\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"The following NEW packages will be installed:\n  libdrm-common libdrm2 libegl-mesa0 libegl1 libgbm1 libglapi-mesa libgles2\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"  libglvnd0 libipsec-mb1 libjudydebian1 libsctp1 libwayland-client0\n  libwayland-server0 libx11-xcb1 libxcb-dri2-0 libxcb-dri3-0 libxcb-present0\n  libxcb-randr0 libxcb-sync1 libxcb-xfixes0 libxshmfence1 stress-ng time\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"0 upgraded, 23 newly installed, 0 to remove and 146 not upgraded.\nNeed to get 4781 kB of archives.\nAfter this operation, 25.6 MB of additional disk space will be used.\nGet:1 http://deb.debian.org/debian bookworm/main amd64 libdrm-common all 2.4.114-1 [7112 B]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:2 http://deb.debian.org/debian bookworm/main amd64 libdrm2 amd64 2.4.114-1+b1 [37.5 kB]\nGet:3 http://deb.debian.org/debian bookworm/main amd64 libwayland-server0 amd64 1.21.0-1 [35.9 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:4 http://deb.debian.org/debian bookworm/main amd64 libgbm1 amd64 22.3.6-1+deb12u1 [38.0 kB]\nGet:5 http://deb.debian.org/debian bookworm/main amd64 libglapi-mesa amd64 22.3.6-1+deb12u1 [35.7 kB]\nGet:6 http://deb.debian.org/debian bookworm/main amd64 libwayland-client0 amd64 1.21.0-1 [28.3 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:7 http://deb.debian.org/debian bookworm/main amd64 libx11-xcb1 amd64 2:1.8.4-2+deb12u2 [192 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:8 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri2-0 amd64 1.15-1 [107 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:9 http://deb.debian.org/debian bookworm/main amd64 libxcb-dri3-0 amd64 1.15-1 [107 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:10 http://deb.debian.org/debian bookworm/main amd64 libxcb-present0 amd64 1.15-1 [105 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:11 http://deb.debian.org/debian bookworm/main amd64 libxcb-randr0 amd64 1.15-1 [117 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:12 http://deb.debian.org/debian bookworm/main amd64 libxcb-sync1 amd64 1.15-1 [109 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:13 http://deb.debian.org/debian bookworm/main amd64 libxcb-xfixes0 amd64 1.15-1 [109 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:14 http://deb.debian.org/debian bookworm/main amd64 libxshmfence1 amd64 1.3-1 [8820 B]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:15 http://deb.debian.org/debian bookworm/main amd64 libegl-mesa0 amd64 22.3.6-1+deb12u1 [114 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:16 http://deb.debian.org/debian bookworm/main amd64 libglvnd0 amd64 1.6.0-1 [51.8 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:17 http://deb.debian.org/debian bookworm/main amd64 libgles2 amd64 1.6.0-1 [16.8 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:18 http://deb.debian.org/debian bookworm/main amd64 libipsec-mb1 amd64 1.3-2 [981 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:19 http://deb.debian.org/debian bookworm/main amd64 libjudydebian1 amd64 1.0.5-5+b2 [102 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:20 http://deb.debian.org/debian bookworm/main amd64 libsctp1 amd64 1.0.19+dfsg-2 [29.7 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:21 http://deb.debian.org/debian bookworm/main amd64 libegl1 amd64 1.6.0-1 [33.7 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:22 http://deb.debian.org/debian bookworm/main amd64 stress-ng amd64 0.15.06-2 [2363 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Get:23 http://deb.debian.org/debian bookworm/main amd64 time amd64 1.9-0.2 [50.8 kB]\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stderr:"debconf: delaying package configuration, since apt-utils is not installed\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Fetched 4781 kB in 2s (3123 kB/s)\n"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"Selecting previously unselected package libdrm-common.\r\n(Reading database ... \r"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"(Reading database ... 70%\r"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"(Reading database ... 75%\r"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"(Reading database ... 80%\r"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"(Reading database ... 85%\r"}}
    sandbox_memory_integrity_test.go:141: Command [bash] output: event:{data:{stdout:"(Reading database ... 90%\r"}}
    sandbox_memory_integrity_test.go:142: 
        	Error Trace:	.../tests/orchestrator/sandbox_memory_integrity_test.go:142
        	Error:      	Received unexpected error:
        	            	failed to execute command bash in sandbox iyh3ravnl2ux0djda2wth: invalid_argument: protocol error: incomplete envelope: unexpected EOF
        	Test:       	TestSandboxMemoryIntegrity/stress-ng_verify
--- FAIL: TestSandboxMemoryIntegrity/stress-ng_verify (31.23s)
github.com/e2b-dev/infra/tests/integration/internal/tests/orchestrator::TestSandboxMemoryIntegrity/tmpfs_hash

Flake rate in main: 58.97% (Passed 16 times, Failed 23 times)

Stack Traces | 30.9s run time
=== RUN   TestSandboxMemoryIntegrity/tmpfs_hash
=== PAUSE TestSandboxMemoryIntegrity/tmpfs_hash
=== CONT  TestSandboxMemoryIntegrity/tmpfs_hash
Executing command bash in sandbox iu3hxathjcwc0a4iif6df (user: root)
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{start:{pid:1258}}
Executing command bash in sandbox ikmyua668dv5rfym4bm8e (user: root)
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"Hit:1 http://deb.debian.org/debian bookworm InRelease\nHit:2 http://deb.debian.org/debian bookworm-updates InRelease\n"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease\n"}}
Executing command bash in sandbox iv30hl6jpcld2vewrnv04 (user: root)
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"Reading package lists..."}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"\n"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"Reading package lists..."}}
Executing command bash in sandbox iv30hl6jpcld2vewrnv04 (user: root)
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"\n"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"Building dependency tree..."}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"\nReading state information..."}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"\n"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"The following NEW packages will be installed:\n  time\n"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"0 upgraded, 1 newly installed, 0 to remove and 146 not upgraded.\nNeed to get 50.8 kB of archives.\nAfter this operation, 132 kB of additional disk space will be used.\nGet:1 http://deb.debian.org/debian bookworm/main amd64 time amd64 1.9-0.2 [50.8 kB]\n"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stderr:"debconf: delaying package configuration, since apt-utils is not installed\n"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"Fetched 50.8 kB in 0s (299 kB/s)\n"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"Selecting previously unselected package time.\r\n(Reading database ... \r"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"(Reading database ... 5%\r"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"(Reading database ... 70%\r"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"(Reading database ... 75%\r"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"(Reading database ... 80%\r"}}
    sandbox_memory_integrity_test.go:33: Command [bash] output: event:{data:{stdout:"(Reading database ... 85%\r"}}
    sandbox_memory_integrity_test.go:34: 
        	Error Trace:	.../tests/orchestrator/sandbox_memory_integrity_test.go:34
        	Error:      	Received unexpected error:
        	            	failed to execute command bash in sandbox iu3hxathjcwc0a4iif6df: invalid_argument: protocol error: incomplete envelope: unexpected EOF
        	Test:       	TestSandboxMemoryIntegrity/tmpfs_hash
--- FAIL: TestSandboxMemoryIntegrity/tmpfs_hash (30.93s)

To view more test analytics, go to the Test Analytics Dashboard
📋 Got 3 mins? Take this short survey to help us improve Test Analytics.

@qodo-code-review
Copy link
Copy Markdown

CI Feedback 🧐

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: unit-tests / Run tests for packages/orchestrator

Failed stage: Run tests that require sudo [❌]

Failed test name: TestSmokeAllFCVersions/fc-v1.10

Failure summary:

The action failed because Go tests in packages/orchestrator/cmd/smoketest failed:
-
TestSmokeAllFCVersions failed for multiple subtests (fc-v1.10, fc-v1.12, fc-v1.14).
- The failure
originates from /home/runner/work/infra/infra/packages/orchestrator/cmd/smoketest/smoke_test.go:97,
where the smoketest reports: error building environment: error creating ext4 filesystem: error
converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1.

- The underlying command failure is resize2fs returning No space left on device while trying to
resize the temporary rootfs file under
/tmp/TestSmokeAllFCVersions.../orchestrator/build-templates/.../rootfs.filesystem.build, indicating
the GitHub Actions runner ran out of disk space (or space in the relevant filesystem/loopback image)
during ext4 shrinking/resizing.

Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

471:  github.com/e2b-dev/infra/packages/orchestrator/cmd/resume-build		coverage: 0.0% of statements
472:  github.com/e2b-dev/infra/packages/orchestrator/cmd/mount-build-rootfs		coverage: 0.0% of statements
473:  github.com/e2b-dev/infra/packages/orchestrator/cmd/inspect-build		coverage: 0.0% of statements
474:  github.com/e2b-dev/infra/packages/orchestrator/cmd/create-build		coverage: 0.0% of statements
475:  github.com/e2b-dev/infra/packages/orchestrator/cmd/internal/cmdutil		coverage: 0.0% of statements
476:  --- PASS: TestScanDir (0.54s)
477:  PASS
478:  coverage: 70.8% of statements
479:  ok  	github.com/e2b-dev/infra/packages/orchestrator/cmd/clean-nfs-cache/cleaner	0.544s	coverage: 70.8% of statements
480:  main_test.go:279: skipping test as it's not running in GCP
481:  --- SKIP: TestGetFilestoreMetadata (1.16s)
482:  PASS
483:  coverage: 29.1% of statements
484:  ok  	github.com/e2b-dev/infra/packages/orchestrator/cmd/simulate-nfs-traffic	1.167s	coverage: 29.1% of statements
485:  ?   	github.com/e2b-dev/infra/packages/orchestrator/pkg/nfsproxy/cfg	[no test files]
486:  === RUN   TestIsUserError
487:  === PAUSE TestIsUserError
488:  === CONT  TestIsUserError
489:  === RUN   TestIsUserError/other_error
490:  === PAUSE TestIsUserError/other_error
491:  === RUN   TestIsUserError/os.ErrNotExist
492:  === PAUSE TestIsUserError/os.ErrNotExist
493:  === RUN   TestIsUserError/os.ErrExist
494:  === PAUSE TestIsUserError/os.ErrExist
495:  === RUN   TestIsUserError/fs.ErrNotExist
496:  === PAUSE TestIsUserError/fs.ErrNotExist
497:  === RUN   TestIsUserError/*fs.PathError(no_such_file)
498:  === PAUSE TestIsUserError/*fs.PathError(no_such_file)
499:  === RUN   TestIsUserError/syscall.EEXIST
500:  === PAUSE TestIsUserError/syscall.EEXIST
501:  === RUN   TestIsUserError/syscall.ENOEXIST
502:  === PAUSE TestIsUserError/syscall.ENOEXIST
503:  === CONT  TestIsUserError/other_error
504:  --- PASS: TestIsUserError/other_error (0.00s)
505:  === CONT  TestIsUserError/*fs.PathError(no_such_file)
506:  --- PASS: TestIsUserError/*fs.PathError(no_such_file) (0.00s)
507:  === CONT  TestIsUserError/fs.ErrNotExist
508:  --- PASS: TestIsUserError/fs.ErrNotExist (0.00s)
509:  === CONT  TestIsUserError/os.ErrExist
510:  --- PASS: TestIsUserError/os.ErrExist (0.00s)
511:  === CONT  TestIsUserError/syscall.ENOEXIST
512:  === CONT  TestIsUserError/os.ErrNotExist
513:  --- PASS: TestIsUserError/os.ErrNotExist (0.00s)
514:  --- PASS: TestIsUserError/syscall.ENOEXIST (0.00s)
515:  === CONT  TestIsUserError/syscall.EEXIST
516:  --- PASS: TestIsUserError/syscall.EEXIST (0.00s)
517:  --- PASS: TestIsUserError (0.00s)
518:  PASS
...

521:  === PAUSE TestFile_Write_PanicRecovered
522:  === RUN   TestFile_Truncate_Happy
523:  === PAUSE TestFile_Truncate_Happy
524:  === RUN   TestFile_Name_Panic_NoCrash
525:  === PAUSE TestFile_Name_Panic_NoCrash
526:  === RUN   TestPortmapRetrieval
527:  === PAUSE TestPortmapRetrieval
528:  === RUN   TestPortMapServer
529:  === PAUSE TestPortMapServer
530:  === CONT  TestPortmapRetrieval
531:  --- PASS: TestPortmapRetrieval (0.00s)
532:  === CONT  TestPortMapServer
533:  --- PASS: TestPortMapServer (0.00s)
534:  PASS
535:  coverage: 45.3% of statements
536:  === RUN   TestFile_Write_Error_Propagates
537:  === PAUSE TestFile_Write_Error_Propagates
538:  === RUN   TestFS_Stat_PanicRecovered
539:  === PAUSE TestFS_Stat_PanicRecovered
540:  === RUN   TestFS_Create_Happy_WrapsFile
541:  === PAUSE TestFS_Create_Happy_WrapsFile
542:  === RUN   TestFS_Join_Panic_NoCrash
543:  === PAUSE TestFS_Join_Panic_NoCrash
544:  === RUN   TestFS_Remove_Error_Propagates
545:  === PAUSE TestFS_Remove_Error_Propagates
546:  === RUN   TestChange_Chmod_PanicRecovered
547:  === PAUSE TestChange_Chmod_PanicRecovered
548:  === RUN   TestChange_Chown_Happy
549:  === PAUSE TestChange_Chown_Happy
550:  === RUN   TestChange_Chtimes_Error_Propagates
551:  === PAUSE TestChange_Chtimes_Error_Propagates
552:  === RUN   TestHandler_FSStat_PanicRecovered
553:  === PAUSE TestHandler_FSStat_PanicRecovered
554:  === RUN   TestHandler_Mount_Panic_NoCrash
555:  === PAUSE TestHandler_Mount_Panic_NoCrash
556:  === RUN   TestHandler_Mount_WrapsFS
557:  === PAUSE TestHandler_Mount_WrapsFS
558:  === RUN   TestHandler_FromHandle_PanicRecovered
559:  === PAUSE TestHandler_FromHandle_PanicRecovered
560:  === RUN   TestHandler_InvalidateHandle_PanicRecovered
561:  === PAUSE TestHandler_InvalidateHandle_PanicRecovered
562:  === RUN   TestHandler_Error_Propagation
563:  === PAUSE TestHandler_Error_Propagation
564:  === CONT  TestFile_Write_PanicRecovered
565:  --- PASS: TestFile_Write_PanicRecovered (0.00s)
566:  === CONT  TestHandler_Error_Propagation
567:  === CONT  TestChange_Chmod_PanicRecovered
568:  --- PASS: TestChange_Chmod_PanicRecovered (0.00s)
569:  === CONT  TestHandler_InvalidateHandle_PanicRecovered
570:  === CONT  TestFS_Stat_PanicRecovered
571:  --- PASS: TestHandler_InvalidateHandle_PanicRecovered (0.00s)
572:  === CONT  TestHandler_FromHandle_PanicRecovered
573:  --- PASS: TestHandler_FromHandle_PanicRecovered (0.00s)
574:  === CONT  TestHandler_Mount_WrapsFS
575:  --- PASS: TestHandler_Mount_WrapsFS (0.00s)
576:  === CONT  TestHandler_Mount_Panic_NoCrash
577:  --- PASS: TestFS_Stat_PanicRecovered (0.00s)
578:  === CONT  TestFS_Remove_Error_Propagates
579:  === CONT  TestFile_Write_Error_Propagates
580:  --- PASS: TestHandler_Mount_Panic_NoCrash (0.00s)
581:  --- PASS: TestFile_Write_Error_Propagates (0.00s)
582:  === CONT  TestFS_Create_Happy_WrapsFile
583:  --- PASS: TestFS_Remove_Error_Propagates (0.00s)
584:  === CONT  TestFile_Truncate_Happy
585:  --- PASS: TestFile_Truncate_Happy (0.00s)
586:  --- PASS: TestFS_Create_Happy_WrapsFile (0.00s)
587:  === CONT  TestHandler_FSStat_PanicRecovered
588:  --- PASS: TestHandler_FSStat_PanicRecovered (0.00s)
589:  === CONT  TestChange_Chtimes_Error_Propagates
590:  --- PASS: TestChange_Chtimes_Error_Propagates (0.00s)
591:  === CONT  TestChange_Chown_Happy
592:  --- PASS: TestChange_Chown_Happy (0.00s)
593:  === CONT  TestFS_Join_Panic_NoCrash
594:  --- PASS: TestFS_Join_Panic_NoCrash (0.00s)
595:  === CONT  TestFile_Name_Panic_NoCrash
596:  --- PASS: TestFile_Name_Panic_NoCrash (0.00s)
597:  --- PASS: TestHandler_Error_Propagation (0.00s)
598:  PASS
...

725:  2026/05/05 01:24:34 Using vrt network cidr 10.12.0.0/16
726:  2026/05/05 01:24:34 Using vrt network cidr 10.12.0.0/16
727:  2026/05/05 01:24:34 Using network slot size: 32766
728:  2026/05/05 01:24:34 Using host network cidr cidr 10.11.0.0/16
729:  2026/05/05 01:24:34 Using vrt network cidr 10.12.0.0/16
730:  2026/05/05 01:24:34 Using vrt network cidr 10.12.0.0/16
731:  2026/05/05 01:24:34 Using network slot size: 32766
732:  --- PASS: TestEnvdInitSendsCaBundle (0.00s)
733:  === RUN   TestEnvdInitEmptyCaBundle
734:  === RUN   TestFileSystemsAreIsolated
735:  === PAUSE TestFileSystemsAreIsolated
736:  === RUN   TestMountNS_Basic
737:  === PAUSE TestMountNS_Basic
738:  === RUN   TestMountNS_Close
739:  === PAUSE TestMountNS_Close
740:  === RUN   TestMountNS_ErrorPropagation
741:  === PAUSE TestMountNS_ErrorPropagation
742:  === RUN   TestIsNSorErr
743:  === PAUSE TestIsNSorErr
744:  === CONT  TestFileSystemsAreIsolated
745:  coverage: 70.8% of statements
746:  --- PASS: TestEnvdInitEmptyCaBundle (0.00s)
747:  PASS
748:  === CONT  TestMountNS_ErrorPropagation
749:  === CONT  TestMountNS_Close
750:  === CONT  TestIsNSorErr
751:  === CONT  TestMountNS_Basic
752:  coverage: 2.7% of statements
753:  --- PASS: TestIsNSorErr (0.00s)
754:  --- PASS: TestMountNS_ErrorPropagation (0.00s)
755:  === RUN   TestWrappedFile
...

795:  === PAUSE TestCacheExportToDiff_ZeroDirtyBlockMapsToSnapshotBuild
796:  === RUN   TestCacheExportToDiff_MixedDirtyBlocksKeepsZeroBlockInDiff
797:  === PAUSE TestCacheExportToDiff_MixedDirtyBlocksKeepsZeroBlockInDiff
798:  === RUN   TestCacheExportToDiff_NonContiguousDirtyBlocksPreserveRangeOrder
799:  === PAUSE TestCacheExportToDiff_NonContiguousDirtyBlocksPreserveRangeOrder
800:  === RUN   TestCache_ZeroLengthIsCachedAndSetIsCached
801:  === PAUSE TestCache_ZeroLengthIsCachedAndSetIsCached
802:  === RUN   TestSplitOversizedRanges
803:  === PAUSE TestSplitOversizedRanges
804:  === RUN   TestCopyFromProcess_Exceed_MAX_RW_COUNT
805:  === PAUSE TestCopyFromProcess_Exceed_MAX_RW_COUNT
806:  === RUN   TestCopyFromProcess_MAX_RW_COUNT_Misalignment_Hugepage
807:  === PAUSE TestCopyFromProcess_MAX_RW_COUNT_Misalignment_Hugepage
808:  === RUN   TestFullFetchChunker_BasicSlice
809:  === PAUSE TestFullFetchChunker_BasicSlice
810:  === RUN   TestFullFetchChunker_RetryAfterError
811:  === PAUSE TestFullFetchChunker_RetryAfterError
812:  === RUN   TestFullFetchChunker_ConcurrentSameChunk
...

837:  === PAUSE TestBitsetRanges_EndOfBitset
838:  === RUN   TestBitsetRanges_Sparse
839:  === PAUSE TestBitsetRanges_Sparse
840:  === RUN   TestGetSize
841:  === PAUSE TestGetSize
842:  === RUN   TestRange_Offsets_EdgeCases
843:  === PAUSE TestRange_Offsets_EdgeCases
844:  === RUN   TestStreamingChunker_BasicSlice
845:  === PAUSE TestStreamingChunker_BasicSlice
846:  === RUN   TestStreamingChunker_CacheHit
847:  === PAUSE TestStreamingChunker_CacheHit
848:  === RUN   TestStreamingChunker_FullChunkCachedAfterPartialRequest
849:  === PAUSE TestStreamingChunker_FullChunkCachedAfterPartialRequest
850:  === RUN   TestStreamingChunker_ConcurrentSameChunk
851:  === PAUSE TestStreamingChunker_ConcurrentSameChunk
852:  === RUN   TestStreamingChunker_ErrorKeepsPartialData
853:  === PAUSE TestStreamingChunker_ErrorKeepsPartialData
854:  === RUN   TestStreamingChunker_ContextCancellation
...

1113:  === PAUSE TestGetTemplate_SetDoesNotTriggerOnEviction
1114:  === RUN   TestWithoutExtend_EntryEvictedEarly
1115:  === PAUSE TestWithoutExtend_EntryEvictedEarly
1116:  === CONT  TestGetTemplate_ExtendsTTL
1117:  === CONT  TestWithoutExtend_EntryEvictedEarly
1118:  === CONT  TestGetTemplate_SetDoesNotTriggerOnEviction
1119:  --- PASS: TestGetTemplate_SetDoesNotTriggerOnEviction (0.00s)
1120:  === CONT  TestGetTemplate_DefaultTTLForZero
1121:  --- PASS: TestGetTemplate_DefaultTTLForZero (0.00s)
1122:  === CONT  TestGetTemplate_NeverShortens
1123:  --- PASS: TestGetTemplate_NeverShortens (0.00s)
1124:  === RUN   TestPeerBlob_WriteTo_PeerSucceeds
1125:  === PAUSE TestPeerBlob_WriteTo_PeerSucceeds
1126:  === RUN   TestPeerBlob_WriteTo_PeerNotAvailable_FallsBackToBase
1127:  === PAUSE TestPeerBlob_WriteTo_PeerNotAvailable_FallsBackToBase
1128:  === RUN   TestPeerBlob_WriteTo_PeerError_FallsBackToBase
1129:  === PAUSE TestPeerBlob_WriteTo_PeerError_FallsBackToBase
1130:  === RUN   TestPeerBlob_WriteTo_UploadedSetMidStream_CompletesFromPeerThenFallsBack
...

1133:  === PAUSE TestPeerBlob_Exists_PeerHasFile
1134:  === RUN   TestPeerBlob_Exists_PeerNotAvailable_FallsBackToBase
1135:  === PAUSE TestPeerBlob_Exists_PeerNotAvailable_FallsBackToBase
1136:  === RUN   TestPeerBlob_Exists_UseStorage_FallsBackToBase
1137:  === PAUSE TestPeerBlob_Exists_UseStorage_FallsBackToBase
1138:  === RUN   TestPeerSeekable_Size_PeerSucceeds
1139:  === PAUSE TestPeerSeekable_Size_PeerSucceeds
1140:  === RUN   TestPeerSeekable_Size_PeerNotAvailable_FallsBackToBase
1141:  === PAUSE TestPeerSeekable_Size_PeerNotAvailable_FallsBackToBase
1142:  === RUN   TestPeerSeekable_ReadAt_PeerSucceeds
1143:  === PAUSE TestPeerSeekable_ReadAt_PeerSucceeds
1144:  === RUN   TestPeerSeekable_ReadAt_PeerNotAvailable_FallsBackToBase
1145:  === PAUSE TestPeerSeekable_ReadAt_PeerNotAvailable_FallsBackToBase
1146:  === RUN   TestPeerSeekable_OpenRangeReader_PeerSucceeds
1147:  === PAUSE TestPeerSeekable_OpenRangeReader_PeerSucceeds
1148:  === RUN   TestPeerSeekable_OpenRangeReader_PeerError_FallsBackToBase
1149:  === PAUSE TestPeerSeekable_OpenRangeReader_PeerError_FallsBackToBase
1150:  === RUN   TestPeerStorageProvider_OpenBlob_ExtractsFileName
1151:  === PAUSE TestPeerStorageProvider_OpenBlob_ExtractsFileName
1152:  === RUN   TestPeerStorageProvider_OpenSeekable_ExtractsFileName
1153:  === PAUSE TestPeerStorageProvider_OpenSeekable_ExtractsFileName
1154:  === CONT  TestPeerBlob_WriteTo_PeerSucceeds
1155:  === CONT  TestPeerSeekable_Size_PeerNotAvailable_FallsBackToBase
1156:  === CONT  TestPeerBlob_Exists_PeerHasFile
1157:  === CONT  TestPeerBlob_Exists_UseStorage_FallsBackToBase
1158:  === CONT  TestPeerSeekable_Size_PeerSucceeds
1159:  === CONT  TestPeerSeekable_OpenRangeReader_PeerError_FallsBackToBase
1160:  === CONT  TestPeerBlob_WriteTo_PeerNotAvailable_FallsBackToBase
1161:  === CONT  TestPeerSeekable_ReadAt_PeerNotAvailable_FallsBackToBase
1162:  --- PASS: TestPeerBlob_Exists_PeerHasFile (0.00s)
1163:  === CONT  TestPeerStorageProvider_OpenBlob_ExtractsFileName
1164:  --- PASS: TestPeerSeekable_Size_PeerNotAvailable_FallsBackToBase (0.00s)
1165:  === CONT  TestPeerSeekable_OpenRangeReader_PeerSucceeds
1166:  --- PASS: TestPeerSeekable_OpenRangeReader_PeerError_FallsBackToBase (0.00s)
1167:  --- PASS: TestPeerBlob_WriteTo_PeerSucceeds (0.00s)
1168:  === CONT  TestPeerBlob_WriteTo_PeerError_FallsBackToBase
1169:  --- PASS: TestPeerBlob_Exists_UseStorage_FallsBackToBase (0.00s)
1170:  --- PASS: TestPeerSeekable_Size_PeerSucceeds (0.00s)
1171:  --- PASS: TestPeerSeekable_ReadAt_PeerNotAvailable_FallsBackToBase (0.00s)
1172:  === CONT  TestPeerSeekable_ReadAt_PeerSucceeds
1173:  --- PASS: TestPeerStorageProvider_OpenBlob_ExtractsFileName (0.00s)
1174:  === CONT  TestPeerBlob_Exists_PeerNotAvailable_FallsBackToBase
1175:  --- PASS: TestPeerSeekable_OpenRangeReader_PeerSucceeds (0.00s)
1176:  === CONT  TestPeerBlob_WriteTo_UploadedSetMidStream_CompletesFromPeerThenFallsBack
1177:  --- PASS: TestPeerBlob_WriteTo_PeerError_FallsBackToBase (0.00s)
1178:  === CONT  TestPeerStorageProvider_OpenSeekable_ExtractsFileName
...

1196:  === PAUSE TestFileSource_Exists_FileNotOnDisk
1197:  === RUN   TestFileSource_Stream_FileOnDisk
1198:  === PAUSE TestFileSource_Stream_FileOnDisk
1199:  === RUN   TestFileSource_Stream_FileNotOnDisk
1200:  === PAUSE TestFileSource_Stream_FileNotOnDisk
1201:  === RUN   TestHeaderSource_Stream
1202:  === PAUSE TestHeaderSource_Stream
1203:  === RUN   TestHeaderSource_Stream_NilHeader
1204:  === PAUSE TestHeaderSource_Stream_NilHeader
1205:  === RUN   TestHeaderSource_Stream_Rootfs
1206:  === PAUSE TestHeaderSource_Stream_Rootfs
1207:  === RUN   TestMetadataSource_Stream
1208:  === PAUSE TestMetadataSource_Stream
1209:  === RUN   TestResolveSeekable_ReturnsErrNotAvailableWhenNotInCache
1210:  === PAUSE TestResolveSeekable_ReturnsErrNotAvailableWhenNotInCache
1211:  === RUN   TestResolveSeekable_ReturnsErrorForUnknownFile
1212:  === PAUSE TestResolveSeekable_ReturnsErrorForUnknownFile
1213:  === RUN   TestResolveBlob_ReturnsErrNotAvailableWhenNotInCache
1214:  === PAUSE TestResolveBlob_ReturnsErrNotAvailableWhenNotInCache
1215:  === RUN   TestResolveBlob_ReturnsErrorForUnknownFile
1216:  === PAUSE TestResolveBlob_ReturnsErrorForUnknownFile
1217:  === RUN   TestSeekableSource_Size
...

1220:  === PAUSE TestSeekableSource_Stream
1221:  === CONT  TestFileSource_Exists_FileOnDisk
1222:  === CONT  TestMetadataSource_Stream
1223:  === CONT  TestHeaderSource_Stream
1224:  --- PASS: TestMetadataSource_Stream (0.00s)
1225:  === CONT  TestSeekableSource_Stream
1226:  --- PASS: TestHeaderSource_Stream (0.00s)
1227:  === CONT  TestHeaderSource_Stream_Rootfs
1228:  --- PASS: TestSeekableSource_Stream (0.00s)
1229:  === CONT  TestSeekableSource_Size
1230:  --- PASS: TestFileSource_Exists_FileOnDisk (0.00s)
1231:  === CONT  TestFileSource_Stream_FileNotOnDisk
1232:  --- PASS: TestHeaderSource_Stream_Rootfs (0.00s)
1233:  === CONT  TestHeaderSource_Stream_NilHeader
1234:  --- PASS: TestSeekableSource_Size (0.00s)
1235:  === CONT  TestResolveBlob_ReturnsErrorForUnknownFile
1236:  --- PASS: TestResolveBlob_ReturnsErrorForUnknownFile (0.00s)
1237:  === CONT  TestResolveBlob_ReturnsErrNotAvailableWhenNotInCache
1238:  --- PASS: TestHeaderSource_Stream_NilHeader (0.00s)
1239:  === CONT  TestResolveSeekable_ReturnsErrorForUnknownFile
1240:  === RUN   TestResolveBlob_ReturnsErrNotAvailableWhenNotInCache/snapfile
1241:  --- PASS: TestResolveSeekable_ReturnsErrorForUnknownFile (0.00s)
1242:  === CONT  TestResolveSeekable_ReturnsErrNotAvailableWhenNotInCache
...

1298:  === PAUSE TestMapping_GetHostVirtRanges/valid_offset_at_start_of_first_region,_full_region_size
1299:  === RUN   TestMapping_GetHostVirtRanges/valid_offset_near_end_of_first_region,_single_byte
1300:  === PAUSE TestMapping_GetHostVirtRanges/valid_offset_near_end_of_first_region,_single_byte
1301:  === RUN   TestMapping_GetHostVirtRanges/valid_offset_at_start_of_second_region,_full_region_size
1302:  === PAUSE TestMapping_GetHostVirtRanges/valid_offset_at_start_of_second_region,_full_region_size
1303:  === RUN   TestMapping_GetHostVirtRanges/offset_before_first_region
1304:  === PAUSE TestMapping_GetHostVirtRanges/offset_before_first_region
1305:  === RUN   TestMapping_GetHostVirtRanges/offset_after_last_region
1306:  === PAUSE TestMapping_GetHostVirtRanges/offset_after_last_region
1307:  === RUN   TestMapping_GetHostVirtRanges/offset_in_gap_between_regions
1308:  === PAUSE TestMapping_GetHostVirtRanges/offset_in_gap_between_regions
1309:  === RUN   TestMapping_GetHostVirtRanges/offset_at_exact_end_of_first_region_(exclusive)
1310:  === PAUSE TestMapping_GetHostVirtRanges/offset_at_exact_end_of_first_region_(exclusive)
1311:  === RUN   TestMapping_GetHostVirtRanges/offset_at_exact_end_of_second_region_(exclusive)
1312:  === PAUSE TestMapping_GetHostVirtRanges/offset_at_exact_end_of_second_region_(exclusive)
1313:  === RUN   TestMapping_GetHostVirtRanges/range_spanning_from_first_region_into_gap_(should_fail_at_gap)
1314:  === PAUSE TestMapping_GetHostVirtRanges/range_spanning_from_first_region_into_gap_(should_fail_at_gap)
1315:  === RUN   TestMapping_GetHostVirtRanges/range_spanning_both_regions_(fails_due_to_gap)
...

1317:  === RUN   TestMapping_GetHostVirtRanges/range_within_first_region,_partial
1318:  === PAUSE TestMapping_GetHostVirtRanges/range_within_first_region,_partial
1319:  === RUN   TestMapping_GetHostVirtRanges/range_from_end_of_first_region_to_start_of_second_(fails_at_gap)
1320:  === PAUSE TestMapping_GetHostVirtRanges/range_from_end_of_first_region_to_start_of_second_(fails_at_gap)
1321:  === CONT  TestMapping_GetHostVirtRanges/valid_offset_in_first_region,_single_byte
1322:  --- PASS: TestMapping_GetHostVirtRanges/valid_offset_in_first_region,_single_byte (0.00s)
1323:  === CONT  TestMapping_HugepagePagesize
1324:  === CONT  TestMapping_GetHostVirtRanges/range_from_end_of_first_region_to_start_of_second_(fails_at_gap)
1325:  === CONT  TestMapping_GetOffset
1326:  --- PASS: TestMapping_GetHostVirtRanges/range_from_end_of_first_region_to_start_of_second_(fails_at_gap) (0.00s)
1327:  === CONT  TestMapping_ZeroSizeRegion
1328:  === CONT  TestMapping_GetHostVirtRanges_EmptyRegions
1329:  --- PASS: TestMapping_ZeroSizeRegion (0.00s)
1330:  === CONT  TestMapping_GetHostVirtRanges/range_spanning_both_regions_(fails_due_to_gap)
1331:  === RUN   TestMapping_GetOffset/valid_address_in_first_region
1332:  === CONT  TestMapping_GetHostVirtRanges/range_spanning_from_first_region_into_gap_(should_fail_at_gap)
1333:  === CONT  TestMapping_GetHostVirtRanges/offset_at_exact_end_of_first_region_(exclusive)
1334:  === PAUSE TestMapping_GetOffset/valid_address_in_first_region
1335:  === CONT  TestMapping_BoundaryConditions
1336:  === CONT  TestMapping_EmptyRegions
1337:  === CONT  TestMapping_GetHostVirtRanges/offset_in_gap_between_regions
1338:  --- PASS: TestMapping_GetHostVirtRanges/range_spanning_from_first_region_into_gap_(should_fail_at_gap) (0.00s)
1339:  --- PASS: TestMapping_GetHostVirtRanges/offset_at_exact_end_of_first_region_(exclusive) (0.00s)
...

1602:  1+0 records in
1603:  1+0 records out
1604:  1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.88919 s, 1.2 GB/s
1605:  ?   	github.com/e2b-dev/infra/packages/orchestrator/pkg/template/build/buildcontext	[no test files]
1606:  2026/05/05 01:24:38 Using host network cidr cidr 10.11.0.0/16
1607:  2026/05/05 01:24:38 Using vrt network cidr 10.12.0.0/16
1608:  2026/05/05 01:24:38 Using vrt network cidr 10.12.0.0/16
1609:  2026/05/05 01:24:38 Using network slot size: 32766
1610:  --- PASS: TestAsyncWriteProtection/hugepage_interleaved_across_pages (0.74s)
1611:  === RUN   TestReadAtBuildSeekable_RejectsNegativeRange
1612:  === PAUSE TestReadAtBuildSeekable_RejectsNegativeRange
1613:  === RUN   Test_server_List
1614:  === PAUSE Test_server_List
1615:  === RUN   TestGetSandboxExecutionData
1616:  === PAUSE TestGetSandboxExecutionData
1617:  === RUN   TestUpdate_EgressOnly_FailsAndDoesNotChangeEndTime
1618:  === PAUSE TestUpdate_EgressOnly_FailsAndDoesNotChangeEndTime
1619:  === RUN   TestUpdate_EndTimeAndEgress_EgressFails_RevertsEndTime
1620:  === PAUSE TestUpdate_EndTimeAndEgress_EgressFails_RevertsEndTime
1621:  === CONT  TestReadAtBuildSeekable_RejectsNegativeRange
1622:  --- PASS: TestReadAtBuildSeekable_RejectsNegativeRange (0.00s)
1623:  === CONT  TestUpdate_EndTimeAndEgress_EgressFails_RevertsEndTime
1624:  --- PASS: TestUpdate_EndTimeAndEgress_EgressFails_RevertsEndTime (0.00s)
1625:  === CONT  TestUpdate_EgressOnly_FailsAndDoesNotChangeEndTime
1626:  --- PASS: TestUpdate_EgressOnly_FailsAndDoesNotChangeEndTime (0.00s)
1627:  === CONT  TestGetSandboxExecutionData
...

1638:  ok  	github.com/e2b-dev/infra/packages/orchestrator/pkg/server	0.041s	coverage: 9.7% of statements
1639:  --- PASS: TestAsyncWriteProtection/hugepage_write_then_read_same_page (0.88s)
1640:  --- PASS: TestAsyncWriteProtection/hugepage_write_to_missing_page_(no_prior_read) (0.90s)
1641:  2026/05/05 01:24:38 Using host network cidr cidr 10.11.0.0/16
1642:  2026/05/05 01:24:38 Using vrt network cidr 10.12.0.0/16
1643:  2026/05/05 01:24:38 Using vrt network cidr 10.12.0.0/16
1644:  2026/05/05 01:24:38 Using network slot size: 32766
1645:  === RUN   TestMatchDomain
1646:  === PAUSE TestMatchDomain
1647:  === RUN   TestIsEgressAllowed
1648:  === PAUSE TestIsEgressAllowed
1649:  === RUN   TestAlwaysDeniedCIDRs
1650:  === PAUSE TestAlwaysDeniedCIDRs
1651:  === RUN   TestResilientListener_EMFILEWithContainer
1652:  === PAUSE TestResilientListener_EMFILEWithContainer
1653:  === RUN   TestIsTransientAcceptError
1654:  === PAUSE TestIsTransientAcceptError
1655:  === CONT  TestMatchDomain
1656:  === RUN   TestMatchDomain/exact_match
1657:  === PAUSE TestMatchDomain/exact_match
1658:  === RUN   TestMatchDomain/exact_match_case_insensitive
1659:  === PAUSE TestMatchDomain/exact_match_case_insensitive
1660:  === CONT  TestResilientListener_EMFILEWithContainer
1661:  === CONT  TestIsTransientAcceptError
1662:  === RUN   TestIsTransientAcceptError/nil_error
1663:  === PAUSE TestIsTransientAcceptError/nil_error
1664:  === RUN   TestIsTransientAcceptError/EMFILE
1665:  === PAUSE TestIsTransientAcceptError/EMFILE
1666:  === RUN   TestIsTransientAcceptError/ENFILE
1667:  === PAUSE TestIsTransientAcceptError/ENFILE
1668:  === CONT  TestAlwaysDeniedCIDRs
1669:  === RUN   TestIsTransientAcceptError/EAGAIN
1670:  === PAUSE TestIsTransientAcceptError/EAGAIN
1671:  === RUN   TestAlwaysDeniedCIDRs/10.0.0.1_is_denied
1672:  === PAUSE TestAlwaysDeniedCIDRs/10.0.0.1_is_denied
1673:  === RUN   TestAlwaysDeniedCIDRs/10.255.255.255_is_denied
1674:  === PAUSE TestAlwaysDeniedCIDRs/10.255.255.255_is_denied
1675:  === RUN   TestAlwaysDeniedCIDRs/192.168.1.1_is_denied
1676:  === PAUSE TestAlwaysDeniedCIDRs/192.168.1.1_is_denied
1677:  === RUN   TestAlwaysDeniedCIDRs/172.16.0.1_is_denied
1678:  === PAUSE TestAlwaysDeniedCIDRs/172.16.0.1_is_denied
1679:  === RUN   TestAlwaysDeniedCIDRs/172.31.255.255_is_denied
1680:  === PAUSE TestAlwaysDeniedCIDRs/172.31.255.255_is_denied
1681:  === RUN   TestAlwaysDeniedCIDRs/169.254.1.1_is_denied_(link-local)
1682:  === PAUSE TestAlwaysDeniedCIDRs/169.254.1.1_is_denied_(link-local)
1683:  === RUN   TestAlwaysDeniedCIDRs/127.0.0.1_is_denied_(loopback)
1684:  === PAUSE TestAlwaysDeniedCIDRs/127.0.0.1_is_denied_(loopback)
1685:  === RUN   TestAlwaysDeniedCIDRs/8.8.8.8_is_allowed_(Google_DNS)
1686:  === PAUSE TestAlwaysDeniedCIDRs/8.8.8.8_is_allowed_(Google_DNS)
1687:  === RUN   TestIsTransientAcceptError/ECONNABORTED
1688:  === RUN   TestAlwaysDeniedCIDRs/1.1.1.1_is_allowed_(Cloudflare)
1689:  === PAUSE TestIsTransientAcceptError/ECONNABORTED
1690:  === RUN   TestIsTransientAcceptError/wrapped_EMFILE
1691:  === PAUSE TestIsTransientAcceptError/wrapped_EMFILE
1692:  === RUN   TestIsTransientAcceptError/wrapped_ENFILE
1693:  === PAUSE TestIsTransientAcceptError/wrapped_ENFILE
1694:  === RUN   TestIsTransientAcceptError/wrapped_ECONNABORTED
1695:  === PAUSE TestIsTransientAcceptError/wrapped_ECONNABORTED
1696:  === RUN   TestIsTransientAcceptError/ECONNRESET
1697:  === PAUSE TestIsTransientAcceptError/ECONNRESET
1698:  === RUN   TestIsTransientAcceptError/generic_error
1699:  === PAUSE TestIsTransientAcceptError/generic_error
1700:  === CONT  TestIsTransientAcceptError/nil_error
1701:  --- PASS: TestIsTransientAcceptError/nil_error (0.00s)
1702:  === PAUSE TestAlwaysDeniedCIDRs/1.1.1.1_is_allowed_(Cloudflare)
...

1704:  === PAUSE TestAlwaysDeniedCIDRs/142.250.80.46_is_allowed_(Google)
1705:  === RUN   TestAlwaysDeniedCIDRs/::1_is_denied_(IPv6_loopback)
1706:  === PAUSE TestAlwaysDeniedCIDRs/::1_is_denied_(IPv6_loopback)
1707:  === RUN   TestAlwaysDeniedCIDRs/fc00::1_is_denied_(IPv6_unique_local)
1708:  === PAUSE TestAlwaysDeniedCIDRs/fc00::1_is_denied_(IPv6_unique_local)
1709:  === RUN   TestAlwaysDeniedCIDRs/fe80::1_is_denied_(IPv6_link-local)
1710:  === PAUSE TestAlwaysDeniedCIDRs/fe80::1_is_denied_(IPv6_link-local)
1711:  === RUN   TestAlwaysDeniedCIDRs/2001:4860:4860::8888_is_allowed_(Google_IPv6_DNS)
1712:  === PAUSE TestAlwaysDeniedCIDRs/2001:4860:4860::8888_is_allowed_(Google_IPv6_DNS)
1713:  === RUN   TestAlwaysDeniedCIDRs/172.15.255.255_is_allowed_(just_before_172.16.0.0/12)
1714:  === PAUSE TestAlwaysDeniedCIDRs/172.15.255.255_is_allowed_(just_before_172.16.0.0/12)
1715:  === RUN   TestAlwaysDeniedCIDRs/172.32.0.0_is_allowed_(just_after_172.16.0.0/12)
1716:  === PAUSE TestAlwaysDeniedCIDRs/172.32.0.0_is_allowed_(just_after_172.16.0.0/12)
1717:  === CONT  TestAlwaysDeniedCIDRs/10.0.0.1_is_denied
1718:  --- PASS: TestAlwaysDeniedCIDRs/10.0.0.1_is_denied (0.00s)
1719:  === CONT  TestIsTransientAcceptError/generic_error
1720:  --- PASS: TestIsTransientAcceptError/generic_error (0.00s)
1721:  === CONT  TestIsTransientAcceptError/ECONNRESET
1722:  --- PASS: TestIsTransientAcceptError/ECONNRESET (0.00s)
1723:  === CONT  TestIsTransientAcceptError/wrapped_ECONNABORTED
1724:  --- PASS: TestIsTransientAcceptError/wrapped_ECONNABORTED (0.00s)
1725:  === CONT  TestIsTransientAcceptError/wrapped_ENFILE
1726:  --- PASS: TestIsTransientAcceptError/wrapped_ENFILE (0.00s)
1727:  === CONT  TestIsTransientAcceptError/wrapped_EMFILE
1728:  --- PASS: TestIsTransientAcceptError/wrapped_EMFILE (0.00s)
1729:  === CONT  TestIsTransientAcceptError/ECONNABORTED
1730:  --- PASS: TestIsTransientAcceptError/ECONNABORTED (0.00s)
1731:  === CONT  TestIsTransientAcceptError/EAGAIN
1732:  --- PASS: TestIsTransientAcceptError/EAGAIN (0.00s)
1733:  === CONT  TestIsTransientAcceptError/ENFILE
1734:  --- PASS: TestIsTransientAcceptError/ENFILE (0.00s)
1735:  === CONT  TestIsTransientAcceptError/EMFILE
1736:  --- PASS: TestIsTransientAcceptError/EMFILE (0.00s)
1737:  --- PASS: TestIsTransientAcceptError (0.00s)
1738:  === CONT  TestIsEgressAllowed
...

1756:  === PAUSE TestIsEgressAllowed/whitelist_mode:_traffic_blocked_when_no_bypass_matches
1757:  === RUN   TestIsEgressAllowed/bypass:_broad_allowed_CIDR_bypasses_specific_denied_CIDR
1758:  === PAUSE TestIsEgressAllowed/bypass:_broad_allowed_CIDR_bypasses_specific_denied_CIDR
1759:  === RUN   TestIsEgressAllowed/bypass:_specific_allowed_CIDR_bypasses_broad_denied_CIDR
1760:  === PAUSE TestIsEgressAllowed/bypass:_specific_allowed_CIDR_bypasses_broad_denied_CIDR
1761:  === RUN   TestIsEgressAllowed/bypass:_domain_bypass_skips_denied_CIDR_check_entirely
1762:  === PAUSE TestIsEgressAllowed/bypass:_domain_bypass_skips_denied_CIDR_check_entirely
1763:  === RUN   TestIsEgressAllowed/no_bypass_match:_denied_CIDR_blocks_traffic
1764:  === PAUSE TestIsEgressAllowed/no_bypass_match:_denied_CIDR_blocks_traffic
1765:  === RUN   TestIsEgressAllowed/multiple_allowed_domains_second_matches
1766:  === PAUSE TestIsEgressAllowed/multiple_allowed_domains_second_matches
1767:  === RUN   TestIsEgressAllowed/multiple_allowed_CIDRs_second_matches
1768:  === PAUSE TestIsEgressAllowed/multiple_allowed_CIDRs_second_matches
1769:  === RUN   TestIsEgressAllowed/multiple_denied_CIDRs_second_matches
1770:  === PAUSE TestIsEgressAllowed/multiple_denied_CIDRs_second_matches
1771:  === RUN   TestIsEgressAllowed/invalid_allowed_CIDR_returns_error
1772:  === PAUSE TestIsEgressAllowed/invalid_allowed_CIDR_returns_error
1773:  === RUN   TestIsEgressAllowed/invalid_denied_CIDR_returns_error
1774:  === PAUSE TestIsEgressAllowed/invalid_denied_CIDR_returns_error
1775:  === RUN   TestIsEgressAllowed/allowed_CIDR_checked_before_invalid_denied_CIDR
...

1799:  === CONT  TestAlwaysDeniedCIDRs/169.254.1.1_is_denied_(link-local)
1800:  --- PASS: TestAlwaysDeniedCIDRs/169.254.1.1_is_denied_(link-local) (0.00s)
1801:  === CONT  TestAlwaysDeniedCIDRs/172.31.255.255_is_denied
1802:  --- PASS: TestAlwaysDeniedCIDRs/172.31.255.255_is_denied (0.00s)
1803:  === CONT  TestAlwaysDeniedCIDRs/172.16.0.1_is_denied
1804:  --- PASS: TestAlwaysDeniedCIDRs/172.16.0.1_is_denied (0.00s)
1805:  --- PASS: TestAsyncWriteProtection/hugepage_all_pages_clean_after_read-only (0.90s)
1806:  --- PASS: TestAsyncWriteProtection/hugepage_alternating_read-write_across_pages (0.94s)
1807:  === CONT  TestAlwaysDeniedCIDRs/192.168.1.1_is_denied
1808:  --- PASS: TestAlwaysDeniedCIDRs/192.168.1.1_is_denied (0.00s)
1809:  === CONT  TestAlwaysDeniedCIDRs/10.255.255.255_is_denied
1810:  --- PASS: TestAlwaysDeniedCIDRs/10.255.255.255_is_denied (0.00s)
1811:  --- PASS: TestAlwaysDeniedCIDRs (0.00s)
1812:  === CONT  TestIsEgressAllowed/allowed_CIDR_checked_before_invalid_denied_CIDR
1813:  --- PASS: TestIsEgressAllowed/allowed_CIDR_checked_before_invalid_denied_CIDR (0.00s)
1814:  === CONT  TestIsEgressAllowed/invalid_denied_CIDR_returns_error
1815:  --- PASS: TestIsEgressAllowed/invalid_denied_CIDR_returns_error (0.00s)
1816:  === CONT  TestIsEgressAllowed/invalid_allowed_CIDR_returns_error
1817:  --- PASS: TestIsEgressAllowed/invalid_allowed_CIDR_returns_error (0.00s)
1818:  === CONT  TestIsEgressAllowed/multiple_denied_CIDRs_second_matches
...

1895:  --- PASS: TestMatchDomain/suffix_wildcard_matches_subdomain (0.00s)
1896:  === CONT  TestMatchDomain/wildcard_matches_simple_hostname
1897:  --- PASS: TestMatchDomain/wildcard_matches_simple_hostname (0.00s)
1898:  === CONT  TestMatchDomain/wildcard_matches_any_hostname
1899:  --- PASS: TestMatchDomain/wildcard_matches_any_hostname (0.00s)
1900:  === CONT  TestMatchDomain/no_match_different_domain
1901:  --- PASS: TestMatchDomain/no_match_different_domain (0.00s)
1902:  === CONT  TestMatchDomain/exact_match_pattern_uppercase
1903:  --- PASS: TestMatchDomain/exact_match_pattern_uppercase (0.00s)
1904:  === CONT  TestMatchDomain/exact_match_case_insensitive
1905:  --- PASS: TestMatchDomain/exact_match_case_insensitive (0.00s)
1906:  --- PASS: TestMatchDomain (0.01s)
1907:  github.com/e2b-dev/infra/packages/orchestrator/pkg/template/build/buildlogger		coverage: 0.0% of statements
1908:  github.com/e2b-dev/infra/packages/orchestrator/pkg/service/machineinfo		coverage: 0.0% of statements
1909:  --- PASS: TestSerialMissingWrite (0.99s)
1910:  github.com/e2b-dev/infra/packages/orchestrator/pkg/template/build/builderrors		coverage: 0.0% of statements
1911:  github.com/e2b-dev/infra/packages/orchestrator/pkg/template/build		coverage: 0.0% of statements
...

2092:  === PAUSE TestParseCopyArgs/glob_pattern_double_asterisk
2093:  === RUN   TestParseCopyArgs/glob_pattern_question_mark
2094:  === PAUSE TestParseCopyArgs/glob_pattern_question_mark
2095:  === RUN   TestParseCopyArgs/glob_pattern_brackets
2096:  === PAUSE TestParseCopyArgs/glob_pattern_brackets
2097:  === RUN   TestParseCopyArgs/no_glob_pattern_with_trailing_slash
2098:  === PAUSE TestParseCopyArgs/no_glob_pattern_with_trailing_slash
2099:  === RUN   TestParseCopyArgs/no_glob_pattern_without_trailing_slash
2100:  === PAUSE TestParseCopyArgs/no_glob_pattern_without_trailing_slash
2101:  === RUN   TestParseCopyArgs/relative_paths
2102:  === PAUSE TestParseCopyArgs/relative_paths
2103:  === RUN   TestParseCopyArgs/complex_glob_at_end
2104:  === PAUSE TestParseCopyArgs/complex_glob_at_end
2105:  === RUN   TestParseCopyArgs/all_arguments_provided
2106:  === PAUSE TestParseCopyArgs/all_arguments_provided
2107:  === RUN   TestParseCopyArgs/error_no_arguments
2108:  === PAUSE TestParseCopyArgs/error_no_arguments
2109:  === RUN   TestParseCopyArgs/error_one_argument
2110:  === PAUSE TestParseCopyArgs/error_one_argument
2111:  === CONT  TestParseCopyArgs/minimum_valid_arguments
2112:  === CONT  TestParseCopyArgs/glob_pattern_question_mark
2113:  --- PASS: TestParseCopyArgs/minimum_valid_arguments (0.00s)
2114:  === CONT  TestParseCopyArgs/glob_pattern_double_asterisk
2115:  --- PASS: TestParseCopyArgs/glob_pattern_question_mark (0.00s)
2116:  === CONT  TestParseCopyArgs/error_one_argument
2117:  --- PASS: TestParseCopyArgs/error_one_argument (0.00s)
2118:  === CONT  TestParseCopyArgs/error_no_arguments
2119:  === CONT  TestParseCopyArgs/with_permissions_755
2120:  --- PASS: TestParseCopyArgs/glob_pattern_double_asterisk (0.00s)
2121:  --- PASS: TestParseCopyArgs/with_permissions_755 (0.00s)
2122:  === CONT  TestParseCopyArgs/complex_glob_at_end
2123:  --- PASS: TestParseCopyArgs/error_no_arguments (0.00s)
2124:  === CONT  TestParseCopyArgs/empty_owner_uses_default
...

2225:  --- PASS: TestRange_Offsets/smaller_than_block_size (0.00s)
2226:  === CONT  TestFullFetchChunker_DifferentChunksIndependent
2227:  === CONT  TestRange_Offsets/non-zero_start
2228:  --- PASS: TestRange_Offsets/non-zero_start (0.00s)
2229:  --- PASS: TestCacheExportToDiff_NonContiguousDirtyBlocksPreserveRangeOrder (0.00s)
2230:  === CONT  TestSplitOversizedRanges/mixed_ranges_-_some_need_splitting
2231:  --- PASS: TestSplitOversizedRanges/single_oversized_range_splits_evenly (0.00s)
2232:  === CONT  TestCacheExportToDiff_ZeroDirtyBlockMapsToSnapshotBuild
2233:  --- PASS: TestSplitOversizedRanges/mixed_ranges_-_some_need_splitting (0.00s)
2234:  === CONT  TestSplitOversizedRanges/range_exactly_at_limit
2235:  --- PASS: TestSplitOversizedRanges/range_exactly_at_limit (0.00s)
2236:  === CONT  TestSplitOversizedRanges/all_ranges_within_limit
2237:  --- PASS: TestSplitOversizedRanges/all_ranges_within_limit (0.00s)
2238:  === CONT  TestRange_Offsets/multiple_blocks
2239:  --- PASS: TestRange_Offsets/multiple_blocks (0.00s)
2240:  === CONT  TestFullFetchChunker_RetryAfterError
2241:  --- PASS: TestSliceDirectOutOfBoundsReturnsBytesNotAvailable (0.00s)
...

2313:  === PAUSE TestNewRangeFromBlocks/different_block_size
2314:  === CONT  TestNewRangeFromBlocks/single_block_at_start
2315:  --- PASS: TestNewRangeFromBlocks/single_block_at_start (0.00s)
2316:  === CONT  TestNewRangeFromBlocks/different_block_size
2317:  --- PASS: TestNewRangeFromBlocks/different_block_size (0.00s)
2318:  === CONT  TestNewRangeFromBlocks/zero_blocks
2319:  --- PASS: TestNewRangeFromBlocks/zero_blocks (0.00s)
2320:  === CONT  TestNewRangeFromBlocks/blocks_starting_at_non-zero_index
2321:  --- PASS: TestNewRangeFromBlocks/blocks_starting_at_non-zero_index (0.00s)
2322:  === CONT  TestNewRangeFromBlocks/multiple_blocks
2323:  --- PASS: TestNewRangeFromBlocks/multiple_blocks (0.00s)
2324:  --- PASS: TestNewRangeFromBlocks (0.00s)
2325:  === CONT  TestRange_Offsets_EdgeCases/one_byte_over_block_boundary
2326:  --- PASS: TestRange_Offsets_EdgeCases/one_byte_over_block_boundary (0.00s)
2327:  --- PASS: TestRange_Offsets_EdgeCases (0.00s)
2328:  === CONT  TestStreamingChunker_ErrorKeepsPartialData
2329:  === CONT  TestCopyFromProcess_MultipleRanges
...

2346:  --- PASS: TestRange_End/zero_size (0.00s)
2347:  === CONT  TestNewRange/zero_size
2348:  --- PASS: TestNewRange/zero_size (0.00s)
2349:  === CONT  TestNewRange/non-zero_start
2350:  --- PASS: TestNewRange/non-zero_start (0.00s)
2351:  --- PASS: TestNewRange (0.00s)
2352:  === CONT  TestRange_End/large_size
2353:  --- PASS: TestRange_End/large_size (0.00s)
2354:  === CONT  TestRange_End/multiple_bytes
2355:  --- PASS: TestRange_End/multiple_bytes (0.00s)
2356:  === CONT  TestRange_End/single_byte
2357:  --- PASS: TestRange_End/single_byte (0.00s)
2358:  --- PASS: TestRange_End (0.00s)
2359:  === CONT  TestFullFetchChunker_BasicSlice
2360:  === CONT  TestCopyFromProcess_LargeRanges
2361:  --- PASS: TestFullFetchChunker_RetryAfterError (0.02s)
2362:  --- PASS: TestFullFetchChunker_ConcurrentSameChunk (0.02s)
2363:  --- PASS: TestStreamingChunker_FullChunkCachedAfterPartialRequest (0.02s)
2364:  --- PASS: TestStreamingChunker_PanicRecovery (0.03s)
2365:  --- PASS: TestCopyFromProcess_LargeRanges (0.01s)
2366:  --- PASS: TestStreamingChunker_BasicSlice (0.02s)
2367:  --- PASS: TestFullFetchChunker_DifferentChunksIndependent (0.03s)
2368:  --- PASS: TestStreamingChunker_ErrorKeepsPartialData (0.02s)
2369:  --- PASS: TestStreamingChunker_LastBlockPartial (0.03s)
...

2429:  === CONT  TestUploadTracker_ContextCancellation
2430:  === CONT  TestUploadTracker_WaitBlocksUntilComplete
2431:  === CONT  TestUploadTracker_SequentialUploads
2432:  --- PASS: TestUploadTracker_SequentialUploads (0.00s)
2433:  === CONT  TestUploadTracker_ConcurrentUploads
2434:  --- PASS: TestUploadTracker_ContextCancellation (0.00s)
2435:  === RUN   TestPostProcessor_Start
2436:  === PAUSE TestPostProcessor_Start
2437:  === CONT  TestPostProcessor_Start
2438:  2026/05/05 01:24:41 Using host network cidr cidr 10.11.0.0/16
2439:  2026/05/05 01:24:41 Using vrt network cidr 10.12.0.0/16
2440:  2026/05/05 01:24:41 Using vrt network cidr 10.12.0.0/16
2441:  2026/05/05 01:24:41 Using network slot size: 32766
2442:  === RUN   TestDeserialize
2443:  === PAUSE TestDeserialize
2444:  === RUN   TestDeserialize_ReadError
2445:  === PAUSE TestDeserialize_ReadError
2446:  === RUN   TestDeserialize_VersionEdgeCases
...

2469:  === CONT  TestDeserialize/Valid_current_version_template_with_all_fields
2470:  --- PASS: TestDeserialize/Valid_current_version_template_with_all_fields (0.00s)
2471:  === CONT  TestDeserialize_VersionEdgeCases
2472:  === RUN   TestDeserialize_VersionEdgeCases/Version_exactly_equals_deprecated_version
2473:  === PAUSE TestDeserialize_VersionEdgeCases/Version_exactly_equals_deprecated_version
2474:  === RUN   TestDeserialize_VersionEdgeCases/Version_as_float_1.0
2475:  === PAUSE TestDeserialize_VersionEdgeCases/Version_as_float_1.0
2476:  === RUN   TestDeserialize_VersionEdgeCases/Version_as_negative_number
2477:  === PAUSE TestDeserialize_VersionEdgeCases/Version_as_negative_number
2478:  === RUN   TestDeserialize_VersionEdgeCases/Version_as_null
2479:  === PAUSE TestDeserialize_VersionEdgeCases/Version_as_null
2480:  === RUN   TestDeserialize_VersionEdgeCases/Version_as_boolean
2481:  === PAUSE TestDeserialize_VersionEdgeCases/Version_as_boolean
2482:  === CONT  TestDeserialize_VersionEdgeCases/Version_exactly_equals_deprecated_version
2483:  --- PASS: TestDeserialize_VersionEdgeCases/Version_exactly_equals_deprecated_version (0.00s)
2484:  === CONT  TestDeserialize_ReadError
2485:  --- PASS: TestDeserialize_ReadError (0.00s)
2486:  === CONT  TestDeserialize/Valid_version_but_invalid_template_structure
...

2603:  === RUN   TestStat
2604:  === PAUSE TestStat
2605:  === RUN   TestGetVolumeRootPath
2606:  === PAUSE TestGetVolumeRootPath
2607:  === RUN   TestRelPath
2608:  === PAUSE TestRelPath
2609:  === RUN   TestEnsureParentDirs
2610:  === PAUSE TestEnsureParentDirs
2611:  === RUN   TestVolume
2612:  === PAUSE TestVolume
2613:  === CONT  TestDirCreate
2614:  === RUN   TestDirCreate/create_dir
2615:  === PAUSE TestDirCreate/create_dir
2616:  === RUN   TestDirCreate/create_nested_dir_with_CreateParents=true
2617:  === PAUSE TestDirCreate/create_nested_dir_with_CreateParents=true
2618:  === RUN   TestDirCreate/create_nested_dir_without_CreateParents_(should_fail)
2619:  === PAUSE TestDirCreate/create_nested_dir_without_CreateParents_(should_fail)
2620:  === RUN   TestDirCreate/create_dir_with_custom_mode_and_ownership
2621:  === PAUSE TestDirCreate/create_dir_with_custom_mode_and_ownership
2622:  === RUN   TestDirCreate/create_dir_that_already_exists
2623:  === PAUSE TestDirCreate/create_dir_that_already_exists
2624:  === RUN   TestDirCreate/CreateDir_with_CreateParents=true_should_fail_when_path_is_a_file
2625:  === PAUSE TestDirCreate/CreateDir_with_CreateParents=true_should_fail_when_path_is_a_file
2626:  === RUN   TestDirCreate/CreateDir_with_CreateParents=true_should_not_change_existing_directory
...

2635:  === PAUSE TestFileCreate/unexpected_EOF
2636:  === CONT  TestFileCreate/create_file
2637:  === CONT  TestDirCreate/create_dir_that_already_exists
2638:  === CONT  TestStat
2639:  === CONT  TestEnsureParentDirs
2640:  === RUN   TestStat/stat_file
2641:  === PAUSE TestStat/stat_file
2642:  === RUN   TestStat/stat_dir
2643:  === PAUSE TestStat/stat_dir
2644:  === RUN   TestStat/stat_non-existent
2645:  === PAUSE TestStat/stat_non-existent
2646:  === RUN   TestStat/stat_symlink
2647:  === PAUSE TestStat/stat_symlink
2648:  === CONT  TestStat/stat_file
2649:  === CONT  TestFileGet
2650:  === CONT  TestDirCreate/create_nested_dir_without_CreateParents_(should_fail)
2651:  === CONT  TestDirCreate/create_dir_with_custom_mode_and_ownership
...

2665:  === CONT  TestFileCreate/create_file_with_force
2666:  === RUN   TestRelPath/empty_string
2667:  === PAUSE TestRelPath/empty_string
2668:  === CONT  TestFileGet/get_non-existent_file
2669:  === CONT  TestDeletePath
2670:  === CONT  TestDirCreate/CreateDir_with_CreateParents=true_should_not_change_existing_directory
2671:  === CONT  TestListDir_Depth
2672:  === RUN   TestDeletePath/delete_file
2673:  === PAUSE TestDeletePath/delete_file
2674:  === RUN   TestDeletePath/delete_empty_directory
2675:  === PAUSE TestDeletePath/delete_empty_directory
2676:  === RUN   TestDeletePath/delete_non-empty_directory_recursively
2677:  === PAUSE TestDeletePath/delete_non-empty_directory_recursively
2678:  === RUN   TestDeletePath/delete_non-existent_path
2679:  === PAUSE TestDeletePath/delete_non-existent_path
2680:  === RUN   TestDeletePath/delete_root_fails
2681:  === PAUSE TestDeletePath/delete_root_fails
2682:  === RUN   TestRelPath/simple_traversal
...

2701:  PASS
2702:  === RUN   TestRelPath/simple_child
2703:  === PAUSE TestRelPath/simple_child
2704:  === RUN   TestRelPath/mixed_clean/traverse
2705:  === PAUSE TestRelPath/mixed_clean/traverse
2706:  === RUN   TestRelPath/absolute_path
2707:  === PAUSE TestRelPath/absolute_path
2708:  === RUN   TestRelPath/dot
2709:  === PAUSE TestRelPath/dot
2710:  === RUN   TestRelPath/another_case
2711:  === PAUSE TestRelPath/another_case
2712:  === RUN   TestRelPath/parent_traversal_one_level
2713:  === PAUSE TestRelPath/parent_traversal_one_level
2714:  --- PASS: TestVolume (0.00s)
2715:  === PAUSE TestDeletePath/delete_symlink
2716:  === CONT  TestDirCreate/CreateDir_with_CreateParents=true_should_fail_when_path_is_a_file
2717:  === RUN   TestDeletePath/delete_broken_symlink
2718:  === RUN   TestRelPath/parent_traversal_many_levels
2719:  === CONT  TestGetVolumeRootPath
2720:  === PAUSE TestRelPath/parent_traversal_many_levels
2721:  === RUN   TestGetVolumeRootPath/success
2722:  === RUN   TestRelPath/root
2723:  === PAUSE TestGetVolumeRootPath/success
2724:  === RUN   TestGetVolumeRootPath/error_scenarios
2725:  === PAUSE TestRelPath/root
2726:  === PAUSE TestGetVolumeRootPath/error_scenarios
2727:  === CONT  TestRelPath/parent_traversal_one_level
2728:  === CONT  TestRelPath/empty_string
2729:  --- PASS: TestRelPath/parent_traversal_one_level (0.00s)
2730:  === CONT  TestRelPath/mixed_clean/traverse
2731:  --- PASS: TestRelPath/empty_string (0.00s)
2732:  --- PASS: TestRelPath/mixed_clean/traverse (0.00s)
2733:  === CONT  TestGetVolumeRootPath/success
2734:  === CONT  TestRelPath/parent_traversal_many_levels
2735:  --- PASS: TestRelPath/parent_traversal_many_levels (0.00s)
2736:  === CONT  TestGetVolumeRootPath/error_scenarios
2737:  === RUN   TestGetVolumeRootPath/error_scenarios/invalid_team_ID
2738:  === PAUSE TestGetVolumeRootPath/error_scenarios/invalid_team_ID
2739:  === RUN   TestGetVolumeRootPath/error_scenarios/invalid_volume_ID
2740:  === PAUSE TestGetVolumeRootPath/error_scenarios/invalid_volume_ID
2741:  === RUN   TestGetVolumeRootPath/error_scenarios/missing_team_ID
2742:  === PAUSE TestGetVolumeRootPath/error_scenarios/missing_team_ID
2743:  === RUN   TestListDir_Depth/depth_0
2744:  === PAUSE TestListDir_Depth/depth_0
2745:  === CONT  TestRelPath/absolute_path
2746:  === PAUSE TestDeletePath/delete_broken_symlink
2747:  === CONT  TestDeletePath/delete_file
2748:  --- PASS: TestRelPath/absolute_path (0.00s)
2749:  === CONT  TestRelPath/root
2750:  --- PASS: TestRelPath/root (0.00s)
2751:  === CONT  TestDeletePath/delete_root_fails
2752:  === CONT  TestDeletePath/delete_empty_directory
2753:  === CONT  TestRelPath/another_case
2754:  --- PASS: TestRelPath/another_case (0.00s)
2755:  === CONT  TestRelPath/dot
2756:  --- PASS: TestRelPath/dot (0.00s)
2757:  === CONT  TestRelPath/simple_child
2758:  --- PASS: TestRelPath/simple_child (0.00s)
2759:  === CONT  TestRelPath/simple_traversal
2760:  --- PASS: TestRelPath/simple_traversal (0.00s)
2761:  --- PASS: TestRelPath (0.00s)
2762:  --- PASS: TestDirCreate/create_dir (0.01s)
2763:  --- PASS: TestGetVolumeRootPath/success (0.00s)
2764:  --- PASS: TestDirCreate/create_dir_that_already_exists (0.01s)
2765:  === RUN   TestGetVolumeRootPath/error_scenarios/volume_type_not_found
2766:  === PAUSE TestGetVolumeRootPath/error_scenarios/volume_type_not_found
2767:  === CONT  TestGetVolumeRootPath/error_scenarios/invalid_team_ID
2768:  --- PASS: TestGetVolumeRootPath/error_scenarios/invalid_team_ID (0.00s)
2769:  === RUN   TestListDir_Depth/depth_1
2770:  === PAUSE TestListDir_Depth/depth_1
2771:  === RUN   TestListDir_Depth/depth_2
2772:  === PAUSE TestListDir_Depth/depth_2
2773:  === RUN   TestListDir_Depth/list_non-existent_dir
2774:  === PAUSE TestListDir_Depth/list_non-existent_dir
2775:  === RUN   TestListDir_Depth/list_depth_out_of_range
2776:  === PAUSE TestListDir_Depth/list_depth_out_of_range
2777:  === CONT  TestListDir_Depth/depth_0
2778:  === CONT  TestDeletePath/delete_non-existent_path
2779:  === CONT  TestListDir_Depth/list_non-existent_dir
2780:  === CONT  TestListDir_Depth/list_depth_out_of_range
2781:  === CONT  TestListDir_Depth/depth_2
2782:  === CONT  TestGetVolumeRootPath/error_scenarios/missing_team_ID
2783:  --- PASS: TestGetVolumeRootPath/error_scenarios/missing_team_ID (0.00s)
2784:  === CONT  TestGetVolumeRootPath/error_scenarios/volume_type_not_found
2785:  === CONT  TestGetVolumeRootPath/error_scenarios/invalid_volume_ID
2786:  === CONT  TestDeletePath/delete_broken_symlink
2787:  --- PASS: TestGetVolumeRootPath/error_scenarios/invalid_volume_ID (0.00s)
2788:  === CONT  TestDeletePath/delete_symlink
2789:  --- PASS: TestDirCreate/create_nested_dir_with_CreateParents=true (0.01s)
2790:  coverage: 18.5% of statements
2791:  ok  	github.com/e2b-dev/infra/packages/orchestrator/pkg/template/server	0.027s	coverage: 18.5% of statements
2792:  === CONT  TestDeletePath/delete_non-empty_directory_recursively
2793:  --- PASS: TestFileCreate/create_file (0.01s)
2794:  --- PASS: TestGetVolumeRootPath/error_scenarios/volume_type_not_found (0.00s)
2795:  === CONT  TestListDir_Depth/depth_1
2796:  --- PASS: TestGetVolumeRootPath/error_scenarios (0.00s)
2797:  --- PASS: TestGetVolumeRootPath (0.00s)
...

2812:  === CONT  TestEnsureParentDirs/partial_existing
2813:  === CONT  TestEnsureParentDirs/existing_directory
2814:  === CONT  TestEnsureParentDirs/multiple_levels
2815:  --- PASS: TestStat/stat_non-existent (0.01s)
2816:  === CONT  TestEnsureParentDirs/single_level
2817:  --- PASS: TestDeletePath/delete_file (0.01s)
2818:  --- PASS: TestEnsureParentDirs/existing_directory (0.00s)
2819:  --- PASS: TestStat/stat_file (0.01s)
2820:  --- PASS: TestFileCreate/create_file_with_force (0.01s)
2821:  --- PASS: TestListDir_Depth/depth_0 (0.01s)
2822:  --- PASS: TestDeletePath/delete_empty_directory (0.01s)
2823:  --- PASS: TestEnsureParentDirs/single_level (0.00s)
2824:  --- PASS: TestFileGet/get_file (0.01s)
2825:  --- PASS: TestEnsureParentDirs/partial_existing (0.00s)
2826:  --- PASS: TestFileCreate (0.00s)
2827:  --- PASS: TestDirCreate/create_nested_dir_without_CreateParents_(should_fail) (0.01s)
2828:  --- PASS: TestEnsureParentDirs/multiple_levels (0.00s)
2829:  --- PASS: TestDirCreate/CreateDir_with_CreateParents=true_should_not_change_existing_directory (0.01s)
2830:  --- PASS: TestDeletePath/delete_symlink (0.01s)
2831:  --- PASS: TestEnsureParentDirs (0.01s)
2832:  --- PASS: TestDeletePath/delete_non-existent_path (0.01s)
2833:  --- PASS: TestListDir_Depth/depth_1 (0.00s)
2834:  --- PASS: TestListDir_Depth/depth_2 (0.01s)
2835:  --- PASS: TestDeletePath/delete_root_fails (0.01s)
2836:  --- PASS: TestDeletePath/delete_non-empty_directory_recursively (0.00s)
2837:  --- PASS: TestDirCreate/CreateDir_with_CreateParents=true_should_fail_when_path_is_a_file (0.01s)
2838:  --- PASS: TestDirCreate/create_dir_with_custom_mode_and_ownership (0.01s)
...

2862:  ->> [stdout] 64-bit filesystem support is not enabled.  The larger fields afforded by this feature enable full-strength checksumming.  Pass -O 64bit to rectify.
2863:  ->> [stdout] Creating filesystem with 6400000 4k blocks and 6400576 inodes
2864:  Filesystem UUID: 11dfcdfa-4e3a-4db6-94ca-353396a36776
2865:  Superblock backups stored on blocks: 
2866:  32768, 6389760
2867:  Allocating group tables:
2868:  ->> [stdout] done                            
2869:  Writing inode tables:   0/196�������       �������done
2870:  ->> [stdout] Creating journal (32768 blocks):
2871:  ->> [stdout] done
2872:  Writing superblocks and filesystem accounting information:
2873:  ->> [stdout] 0/196�������
2874:  ->> [stdout] �������
2875:  ->> [stdout] done
2876:  proxy_test.go:156: Successfully opened 30 connections
2877:  proxy_test.go:186: Container encountered 5 EMFILE errors and handled them with retry
2878:  proxy_test.go:114: Container logs:
...

2882:  ACCEPTED: count=2 active=2
2883:  ACCEPTED: count=3 active=3
2884:  ACCEPTED: count=4 active=4
2885:  ACCEPTED: count=5 active=5
2886:  ACCEPTED: count=6 active=6
2887:  ACCEPTED: count=7 active=7
2888:  ACCEPTED: count=8 active=8
2889:  ACCEPTED: count=9 active=9
2890:  ACCEPTED: count=10 active=10
2891:  ACCEPTED: count=11 active=11
2892:  ACCEPTED: count=12 active=12
2893:  ACCEPTED: count=13 active=13
2894:  ACCEPTED: count=14 active=14
2895:  ACCEPTED: count=15 active=15
2896:  ACCEPTED: count=16 active=16
2897:  EMFILE_ERROR: count=1 active=16
2898:  ACCEPTED: count=17 active=14
2899:  ACCEPTED: count=18 active=15
2900:  ACCEPTED: count=19 active=16
2901:  EMFILE_ERROR: count=2 active=16
2902:  ACCEPTED: count=20 active=14
2903:  ACCEPTED: count=21 active=15
2904:  ACCEPTED: count=22 active=16
2905:  EMFILE_ERROR: count=3 active=16
2906:  ACCEPTED: count=23 active=14
2907:  ACCEPTED: count=24 active=15
2908:  ACCEPTED: count=25 active=16
2909:  EMFILE_ERROR: count=4 active=16
2910:  ACCEPTED: count=26 active=14
2911:  ACCEPTED: count=27 active=15
2912:  ACCEPTED: count=28 active=16
2913:  EMFILE_ERROR: count=5 active=16
2914:  ACCEPTED: count=29 active=14
...

2933:  === CONT  TestNewDiffStore
2934:  === CONT  TestDiffStoreOldestFromCache
2935:  [LaunchDarkly] 2026/05/05 01:24:46 INFO: Starting LaunchDarkly client 7.13.0
2936:  [LaunchDarkly] 2026/05/05 01:24:46 INFO: Starting LaunchDarkly client 7.13.0
2937:  [LaunchDarkly] 2026/05/05 01:24:46 INFO: Closing LaunchDarkly client
2938:  --- PASS: TestNewDiffStore (0.00s)
2939:  === CONT  TestDiffStoreTTLEviction
2940:  === CONT  TestDiffStoreRefreshTTLEviction
2941:  === CONT  TestDiffStoreResetDeleteRace
2942:  [LaunchDarkly] 2026/05/05 01:24:46 INFO: Starting LaunchDarkly client 7.13.0
2943:  === CONT  TestDiffStoreConcurrentEvictionRace
2944:  [LaunchDarkly] 2026/05/05 01:24:46 INFO: Starting LaunchDarkly client 7.13.0
2945:  [LaunchDarkly] 2026/05/05 01:24:46 INFO: Starting LaunchDarkly client 7.13.0
2946:  [LaunchDarkly] 2026/05/05 01:24:46 INFO: Starting LaunchDarkly client 7.13.0
2947:  smoke_test.go:97: 
2948:  Error Trace:	/home/runner/work/infra/infra/packages/orchestrator/cmd/smoketest/smoke_test.go:97
2949:  Error:      	Received unexpected error:
2950:  error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1
2951:  Test:       	TestSmokeAllFCVersions/fc-v1.10
2952:  Messages:   	create build failed for FC v1.10.1_30cbb07
2953:  --- FAIL: TestSmokeAllFCVersions/fc-v1.10 (2.70s)
2954:  === RUN   TestSmokeAllFCVersions/fc-v1.12
...

2960:  ->> [stdout] 64-bit filesystem support is not enabled.  The larger fields afforded by this feature enable full-strength checksumming.  Pass -O 64bit to rectify.
2961:  Creating filesystem with 6400000 4k blocks and 6400576 inodes
2962:  Filesystem UUID: c33fef83-66cd-4903-b12d-bdcf507ddac8
2963:  Superblock backups stored on blocks: 
2964:  32768, 6389760
2965:  Allocating group tables: done                            
2966:  Writing inode tables:   0/196�������       �������done
2967:  ->> [stdout] Creating journal (32768 blocks):
2968:  ->> [stdout] done
2969:  Writing superblocks and filesystem accounting information:
2970:  ->> [stdout] 0/196�������
2971:  ->> [stdout] �������
2972:  ->> [stdout] done
2973:  [LaunchDarkly] 2026/05/05 01:24:46 INFO: Closing LaunchDarkly client
2974:  --- PASS: TestDiffStoreConcurrentEvictionRace (0.63s)
2975:  path_direct_slow_test.go:115: got expected error: read /dev/nbd0: input/output error
2976:  [LaunchDarkly] 2026/05/05 01:24:47 INFO: Closing LaunchDarkly client
...

2982:  --- PASS: TestPathDirect_Direct32MBWrite (12.29s)
2983:  --- PASS: TestPathDirect_WriteAtOffset (12.33s)
2984:  --- PASS: TestPathDirect_LargeWrite (12.42s)
2985:  --- PASS: TestSlowBackend_ShortTimeout (12.46s)
2986:  PASS
2987:  coverage: 77.0% of statements
2988:  ok  	github.com/e2b-dev/infra/packages/orchestrator/pkg/sandbox/nbd	12.482s	coverage: 77.0% of statements
2989:  [LaunchDarkly] 2026/05/05 01:24:48 INFO: Closing LaunchDarkly client
2990:  --- PASS: TestDiffStoreTTLEviction (2.00s)
2991:  ->> [stderr] resize2fs 1.47.0 (5-Feb-2023)
2992:  ->> [stderr] resize2fs: No space left on device while trying to resize /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/8ec0770a-247c-49f1-8848-63fff249cb93/rootfs.filesystem.build
2993:  Please run 'e2fsck -fy /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/8ec0770a-247c-49f1-8848-63fff249cb93/rootfs.filesystem.build' to fix the filesystem
2994:  after the aborted resize operation.
2995:  ->> [stdout] Resizing the filesystem on /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/8ec0770a-247c-49f1-8848-63fff249cb93/rootfs.filesystem.build to 229376 (4k) blocks.
2996:  smoke_test.go:97: 
2997:  Error Trace:	/home/runner/work/infra/infra/packages/orchestrator/cmd/smoketest/smoke_test.go:97
2998:  Error:      	Received unexpected error:
2999:  error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1
3000:  Test:       	TestSmokeAllFCVersions/fc-v1.12
3001:  Messages:   	create build failed for FC v1.12.1_210cbac
3002:  --- FAIL: TestSmokeAllFCVersions/fc-v1.12 (2.58s)
3003:  === RUN   TestSmokeAllFCVersions/fc-v1.14
...

3013:  ->> [stdout] done
3014:  ->> [stdout] Writing inode tables:   0/196�������
3015:  ->> [stdout] �������done
3016:  ->> [stdout] Creating journal (32768 blocks):
3017:  ->> [stdout] done
3018:  Writing superblocks and filesystem accounting information:
3019:  ->> [stdout] 0/196�������
3020:  ->> [stdout] �������
3021:  ->> [stdout] done
3022:  ->> [stderr] resize2fs 1.47.0 (5-Feb-2023)
3023:  ->> [stderr] resize2fs: No space left on device while trying to resize /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/9d3d75c2-9f7e-4c35-8d2a-7dc72312ecf1/rootfs.filesystem.build
3024:  Please run 'e2fsck -fy /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/9d3d75c2-9f7e-4c35-8d2a-7dc72312ecf1/rootfs.filesystem.build' to fix the filesystem
3025:  after the aborted resize operation.
3026:  ->> [stdout] Resizing the filesystem on /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/9d3d75c2-9f7e-4c35-8d2a-7dc72312ecf1/rootfs.filesystem.build to 229376 (4k) blocks.
3027:  smoke_test.go:97: 
3028:  Error Trace:	/home/runner/work/infra/infra/packages/orchestrator/cmd/smoketest/smoke_test.go:97
3029:  Error:      	Received unexpected error:
3030:  error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1
3031:  Test:       	TestSmokeAllFCVersions/fc-v1.14
3032:  Messages:   	create build failed for FC v1.14.1_458ca91
3033:  --- FAIL: TestSmokeAllFCVersions/fc-v1.14 (2.52s)
3034:  --- FAIL: TestSmokeAllFCVersions (17.41s)
3035:  FAIL
...

3051:  --- PASS: TestIntegrationTest (24.43s)
3052:  PASS
3053:  coverage: 73.3% of statements
3054:  ok  	github.com/e2b-dev/infra/packages/orchestrator/pkg/nfsproxy	24.559s	coverage: 73.3% of statements
3055:  --- PASS: TestReturn_NoPanicDuringClose (31.25s)
3056:  PASS
3057:  coverage: 18.2% of statements
3058:  ok  	github.com/e2b-dev/infra/packages/orchestrator/pkg/sandbox/network	31.259s	coverage: 18.2% of statements
3059:  === �[33mSkipped�[0m
3060:  === �[33mSKIP�[0m: cmd/simulate-gcs-traffic TestGetEnvironmentMetadata (0.01s)
3061:  main_test.go:250: skipping test as it's not running in GCP
3062:  === �[33mSKIP�[0m: cmd/simulate-nfs-traffic TestGetFilestoreMetadata (1.16s)
3063:  main_test.go:279: skipping test as it's not running in GCP
3064:  === �[33mSKIP�[0m: pkg/sandbox/uffd/userfaultfd TestHelperServingProcess (0.00s)
3065:  harness_child_test.go:17: this is a helper process, skipping direct execution
3066:  === �[31mFailed�[0m
3067:  === �[31mFAIL�[0m: cmd/smoketest TestSmokeAllFCVersions/fc-v1.10 (2.70s)
...

3076:  Allocating group tables:
3077:  ->> [stdout] done                            
3078:  Writing inode tables:   0/196�������       �������done
3079:  ->> [stdout] Creating journal (32768 blocks):
3080:  ->> [stdout] done
3081:  Writing superblocks and filesystem accounting information:
3082:  ->> [stdout] 0/196�������
3083:  ->> [stdout] �������
3084:  ->> [stdout] done
3085:  ->> [stderr] resize2fs 1.47.0 (5-Feb-2023)
3086:  ->> [stderr] resize2fs: No space left on device while trying to resize /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/0e54d54d-f100-4b5f-88a7-329e9f592c8e/rootfs.filesystem.build
3087:  Please run 'e2fsck -fy /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/0e54d54d-f100-4b5f-88a7-329e9f592c8e/rootfs.filesystem.build' to fix the filesystem
3088:  after the aborted resize operation.
3089:  ->> [stdout] Resizing the filesystem on /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/0e54d54d-f100-4b5f-88a7-329e9f592c8e/rootfs.filesystem.build to 229376 (4k) blocks.
3090:  smoke_test.go:97: 
3091:  Error Trace:	/home/runner/work/infra/infra/packages/orchestrator/cmd/smoketest/smoke_test.go:97
3092:  Error:      	Received unexpected error:
3093:  error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1
3094:  Test:       	TestSmokeAllFCVersions/fc-v1.10
3095:  Messages:   	create build failed for FC v1.10.1_30cbb07
3096:  === �[31mFAIL�[0m: cmd/smoketest TestSmokeAllFCVersions/fc-v1.12 (2.58s)
...

3104:  32768, 6389760
3105:  Allocating group tables: done                            
3106:  Writing inode tables:   0/196�������       �������done
3107:  ->> [stdout] Creating journal (32768 blocks):
3108:  ->> [stdout] done
3109:  Writing superblocks and filesystem accounting information:
3110:  ->> [stdout] 0/196�������
3111:  ->> [stdout] �������
3112:  ->> [stdout] done
3113:  ->> [stderr] resize2fs 1.47.0 (5-Feb-2023)
3114:  ->> [stderr] resize2fs: No space left on device while trying to resize /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/8ec0770a-247c-49f1-8848-63fff249cb93/rootfs.filesystem.build
3115:  Please run 'e2fsck -fy /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/8ec0770a-247c-49f1-8848-63fff249cb93/rootfs.filesystem.build' to fix the filesystem
3116:  after the aborted resize operation.
3117:  ->> [stdout] Resizing the filesystem on /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/8ec0770a-247c-49f1-8848-63fff249cb93/rootfs.filesystem.build to 229376 (4k) blocks.
3118:  smoke_test.go:97: 
3119:  Error Trace:	/home/runner/work/infra/infra/packages/orchestrator/cmd/smoketest/smoke_test.go:97
3120:  Error:      	Received unexpected error:
3121:  error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ext4 filesystem: error shrinking rootfs file: exit status 1
3122:  Test:       	TestSmokeAllFCVersions/fc-v1.12
3123:  Messages:   	create build failed for FC v1.12.1_210cbac
3124:  === �[31mFAIL�[0m: cmd/smoketest TestSmokeAllFCVersions/fc-v1.14 (2.52s)
...

3134:  ->> [stdout] done
3135:  ->> [stdout] Writing inode tables:   0/196�������
3136:  ->> [stdout] �������done
3137:  ->> [stdout] Creating journal (32768 blocks):
3138:  ->> [stdout] done
3139:  Writing superblocks and filesystem accounting information:
3140:  ->> [stdout] 0/196�������
3141:  ->> [stdout] �������
3142:  ->> [stdout] done
3143:  ->> [stderr] resize2fs 1.47.0 (5-Feb-2023)
3144:  ->> [stderr] resize2fs: No space left on device while trying to resize /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/9d3d75c2-9f7e-4c35-8d2a-7dc72312ecf1/rootfs.filesystem.build
3145:  Please run 'e2fsck -fy /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/9d3d75c2-9f7e-4c35-8d2a-7dc72312ecf1/rootfs.filesystem.build' to fix the filesystem
3146:  after the aborted resize operation.
3147:  ->> [stdout] Resizing the filesystem on /tmp/TestSmokeAllFCVersions2597444560/001/orchestrator/build-templates/9d3d75c2-9f7e-4c35-8d2a-7dc72312ecf1/rootfs.filesystem.build to 229376 (4k) blocks.
3148:  smoke_test.go:97: 
3149:  Error Trace:	/home/runner/work/infra/infra/packages/orchestrator/cmd/smoketest/smoke_test.go:97
3150:  Error:      	Received unexpected error:
3151:  error building environment: error creating ext4 filesystem: error converting oci to ext4: error shrinking ex...

@ValentaTomas
Copy link
Copy Markdown
Member Author

Close for now, will reopen after measuring later.

@ValentaTomas
Copy link
Copy Markdown
Member Author

Close for now, will reopen after measuring later.

@ValentaTomas ValentaTomas reopened this May 6, 2026
@ValentaTomas
Copy link
Copy Markdown
Member Author

Close for now, will reopen after measuring later.

@ValentaTomas ValentaTomas deleted the feat/ext4-packed-meta branch May 6, 2026 08:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants