Skip to content

Commit

Permalink
make include optional
Browse files Browse the repository at this point in the history
  • Loading branch information
2xburnt committed Sep 25, 2024
1 parent 5d2b1bb commit 765fa02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
fetch-depth: 0

- name: Run GoReleaser
env:
INCLUDE: ""
run: |
make build-all
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ ldflags := $(strip $(ldflags))
BUILD_FLAGS := -tags "$(build_tags_comma_sep)" -ldflags '$(ldflags)' -trimpath

# The below include contains the tools and runsim targets.
include contrib/devtools/Makefile
INCLUDE := contrib/devtools/Makefile
include $(INCLUDE)

all: install lint test

Expand Down

0 comments on commit 765fa02

Please sign in to comment.