Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/orchestrator/benchmarks/benchmark_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

// run with something like:
//
// sudo `which go` test -benchtime=15s -bench=. -v
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

// Concurrent sandbox creation benchmark.
//
// Measures how many sandboxes can be effectively resumed in parallel on a
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/cmd/create-build/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package main

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/cmd/mount-build-rootfs/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package main

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/cmd/resume-build/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package main

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/cmd/resume-build/shell.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package main

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/cmd/smoketest/smoke_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package smoketest_test

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package main

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/cfg/model.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package cfg

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/cfg/model_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

//nolint:paralleltest // many tests set env, which may cause issues
package cfg

Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/cfg/service.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package cfg

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/chrooted/builder.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chrooted

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/chrooted/change.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chrooted

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/chrooted/chroot.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chrooted

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/chrooted/chroot_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chrooted

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/chrooted/fs.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chrooted

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/chrooted/mountns.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chrooted

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/chrooted/mountns_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chrooted

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/factories/cmux.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package factories

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/factories/http.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package factories

import "net/http"
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/factories/run.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package factories

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/healthcheck/healthcheck.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package healthcheck

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/hyperloopserver/handlers/logs.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package handlers

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/hyperloopserver/handlers/me.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package handlers

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/hyperloopserver/handlers/store.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package handlers

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/hyperloopserver/server.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package hyperloopserver

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/metrics/host.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package metrics

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/metrics/sandboxes.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package metrics

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/chroot/change.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chroot

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/chroot/file.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chroot

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/chroot/file_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chroot

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/chroot/fs.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chroot

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/chroot/fs_failed.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chroot

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/chroot/nfs.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package chroot

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/e2e_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package nfsproxy

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/proxy.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package nfsproxy

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/proxy_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package nfsproxy

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/nfsproxy/spanconn.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package nfsproxy

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/proxy/metrics.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package proxy

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/proxy/proxy.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package proxy

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/cache.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/cache_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/device.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/empty.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/fetch_session.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/iov.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/local.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/overlay.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/prefetch_tracker.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/range.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/range_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/streaming_chunk.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/tracker.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/block/tracker_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package block

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build/build.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package build

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build/cache.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package build

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build/cache_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package build

// Race Condition Tests:
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build/diff.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package build

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build/header_load.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package build

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build/local_diff.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package build

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build/storage_diff.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package build

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build_upload.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package sandbox

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build_upload_v3.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package sandbox

import (
Expand Down
2 changes: 2 additions & 0 deletions packages/orchestrator/pkg/sandbox/build_upload_v4.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build linux

package sandbox

import (
Expand Down
Loading
Loading