Skip to content

Commit

Permalink
Satisfy CI expectations for out.jam
Browse files Browse the repository at this point in the history
  • Loading branch information
sigilante committed Jan 10, 2025
1 parent 262ae08 commit f459efa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,28 +45,28 @@ release-test-all:
build-dev-fast: ## Slower to compile, faster to execute. Builds all projects
@set -e; \
RUST_LOG=TRACE ./choo hoon/main.hoon hoon; \
mv out.jam assets/jocktest.jam; \
# mv out.jam assets/jocktest.jam; \
cargo build $(PROFILE_DEV_FAST)

.PHONY: build-parallel
build-parallel: ## profiling profile with parallel feature enabled
@set -e; \
./choo hoon/main.hoon hoon; \
mv out.jam assets/jocktest.jam; \
# mv out.jam assets/jocktest.jam; \
cargo build $(FEATURES_PARALLEL) $(PROFILE_PROFILING)

.PHONY: build
build-dev-debug: ## Fast to compile, slow to execute. Builds all projects
@set -e; \
RUST_LOG=TRACE ./choo --new --log-level trace hoon/main.hoon hoon; \
mv out.jam assets/jocktest.jam; \
# mv out.jam assets/jocktest.jam; \
cargo build

.PHONY: build-release
build-release: ## Slowest to compile, fastest to execute. Builds all projects
@set -e; \
RUST_LOG=TRACE ./choo hoon/main.hoon hoon; \
mv out.jam assets/jocktest.jam; \
# mv out.jam assets/jocktest.jam; \
cargo build $(PROFILE_RELEASE)

.PHONY: update-choo
Expand Down

0 comments on commit f459efa

Please sign in to comment.