Skip to content

Commit

Permalink
Don't pass --release when running make test
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffany352 committed May 2, 2024
1 parent 62b85f2 commit 980fa25
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ SHELL = /bin/sh

CARGO := cargo
FETCHFLAGS := --locked
CARGOFLAGS := --release --locked --offline --no-default-features
CARGOFLAGS := --locked --offline --no-default-features
BUILDFLAGS := $(CARGOFLAGS) --release
CHECKFLAGS := $(CARGOFLAGS)
ASCIIDOCTOR := asciidoctor
MANFLAGS := -b manpage -D build
HTMLFLAGS := -D build -a toc=left -a toclevels=3 -a sectlinks
Expand All @@ -28,10 +30,10 @@ fetch:
$(CARGO) fetch $(FETCHFLAGS)

bin:
$(CARGO) build $(CARGOFLAGS) -p rink
$(CARGO) build $(BUILDFLAGS) -p rink

test:
$(CARGO) test $(CARGOFLAGS) --all
$(CARGO) test $(CHECKFLAGS) --all

man:
$(ASCIIDOCTOR) $(MANFLAGS) $(srcdir)/docs/rink.1.adoc
Expand Down

0 comments on commit 980fa25

Please sign in to comment.