Skip to content

build: Fix parallelism of make -j build #5438

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 15, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Adress PR comments
  • Loading branch information
mafredri committed Dec 15, 2022
commit 613eee7daaa7beaad3e66dac7673bfc1cacf5de9
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ release: $(CODER_FAT_BINARIES) $(CODER_ALL_ARCHIVES) $(CODER_ALL_PACKAGES) $(COD
.PHONY: release

build/coder-slim_$(VERSION)_checksums.sha1: site/out/bin/coder.sha1
cp "site/out/bin/coder.sha1" "build/coder-slim_$(VERSION)_checksums.sha1"
cp "$<" "$@"

site/out/bin/coder.sha1: $(CODER_SLIM_BINARIES)
pushd ./site/out/bin
Expand All @@ -115,7 +115,7 @@ build/coder-slim_$(VERSION).tar: build/coder-slim_$(VERSION)_checksums.sha1 $(CO
popd

site/out/bin/coder.tar.zst: build/coder-slim_$(VERSION).tar.zst
cp "build/coder-slim_$(VERSION).tar.zst" "site/out/bin/coder.tar.zst"
cp "$<" "$@"

build/coder-slim_$(VERSION).tar.zst: build/coder-slim_$(VERSION).tar
zstd $(ZSTDFLAGS) \
Expand Down