Skip to content

Commit bf39424

Browse files
tomassrnkaclaude
authored andcommitted
fix: remove fetch-busybox from test/lint targets
test and lint are called inside test.Dockerfile which doesn't have the pkg/ directory. CI workflows have their own fetch-busybox setup steps. Local dev gets busybox via build-local/build-debug before running test/lint. fetch-busybox remains on: build-local, build-debug (the entry points for local builds that produce the full binary). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 83229ac commit bf39424

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/orchestrator/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ build-and-upload/template-manager: build upload/template-manager
124124

125125

126126
.PHONY: test
127-
test: fetch-busybox
127+
test:
128128
go test -race -v ./...
129129

130130
.PHONY: test-docker
@@ -159,5 +159,5 @@ migrate:
159159
./scripts/upload-envs.sh /mnt/disks/fc-envs/v1 $(TEMPLATE_BUCKET_NAME)
160160

161161
.PHONY: lint
162-
lint: fetch-busybox
162+
lint:
163163
golangci-lint run --fix ./...

0 commit comments

Comments
 (0)