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
305 changes: 215 additions & 90 deletions .flox/env/manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .flox/env/manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ environments = [
{ dir = "tools/actionlint" },
{ dir = "tools/python" },
{ dir = "tools/nodejs" },
{ dir = "tools/go" },
{ dir = "tools/osv-scanner" },
{ dir = "tools/open-policy-agent" },
]
Expand Down
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ PYTHON_VERSION ?= 3.12
UV_VERSION := 0.9.14
NODE_VERSION := 22.23.2
PNPM_VERSION := 10.34.5
GO_VERSION := 1.26.7
BOOTSTRAP_CREATE_VENV ?= 1
BOOTSTRAP_EXPECTED_VIRTUAL_ENV := $(CURDIR)/.venv
BOOTSTRAP_ACTIVATION_REMINDER = if [ "$(TOOLCHAIN)" = "flox" ] && [ "$${FLOX_ENV_PROJECT:-}" != "$(CURDIR)" ]; then echo ""; echo "Next steps:"; echo " flox -q activate"; echo " nemo --help"; elif [ "$(TOOLCHAIN)" = "system" ] && [ "$${VIRTUAL_ENV:-}" != "$(BOOTSTRAP_EXPECTED_VIRTUAL_ENV)" ]; then echo ""; echo "Next steps:"; echo " source .venv/bin/activate"; echo " nemo --help"; fi
Expand All @@ -41,7 +42,7 @@ help:

.PHONY: toolchain-versions
toolchain-versions: ## Print the system toolchain versions accepted by bootstrap
@printf 'Python %s\nuv >=%s\nNode.js %s\npnpm %s\n' "$(PYTHON_VERSION)" "$(UV_VERSION)" "$(NODE_VERSION)" "$(PNPM_VERSION)"
@printf 'Python %s\nuv >=%s\nNode.js %s\npnpm %s\nGo %s\n' "$(PYTHON_VERSION)" "$(UV_VERSION)" "$(NODE_VERSION)" "$(PNPM_VERSION)" "$(GO_VERSION)"

DOCKER_BAKE_FILE ?= docker-bake.hcl
DOCKER_TARGET ?= $(if $(TARGET),$(TARGET),docker-cpu)
Expand Down Expand Up @@ -591,12 +592,12 @@ check-policy: ## Verify WASM bundle is up-to-date with policies
.PHONY: build-jobs-launcher
build-jobs-launcher:
@echo "Building jobs launcher binary..."
cd services/core/jobs/jobs-launcher/ && ./build-manual.sh
cd services/core/jobs/jobs-launcher/ && $(FLOX_EXEC) ./build-manual.sh

.PHONY: test-jobs-launcher
test-jobs-launcher:
@echo "Testing jobs launcher binary..."
cd services/core/jobs/jobs-launcher/ && go test ./... -v
cd services/core/jobs/jobs-launcher/ && $(FLOX_EXEC) go test ./... -v

.PHONY: test-e2e-docker
test-e2e-docker: ## Run e2e tests using docker
Expand Down
Loading
Loading