-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Standardizes the way we build (#87)
* Remove font embedding from build. I added this when I was doing a lot of font work, but now that I'm not it really is annoying to generate fonts each time. This commit makes it so the only target for build is a clean. * Remove build directory in make. This is unncessary and I feel bad for adding it. I've removed it so that a build places the binary in the root. * Updated build to use make. This commit updates the build to use make so there is one way to build things. * Updated build docs. This commit updates the build docs to use the one true way to build this repository.
- Loading branch information
1 parent
ce90198
commit bf47935
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,4 @@ jobs: | |
run: brew install webp | ||
|
||
- name: Build & test | ||
run: go build . && go test ./... | ||
run: make build && make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ examples/*.webp | |
examples/*.gif | ||
|
||
# Pixlet Binary | ||
build/out/pixlet | ||
pixlet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters