mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 19:08:52 +00:00
5b32e886f4
* add support for auth methods * use newtypes for required params * fix duplicate operationId issues * prevent aliasing of vendorextension references in fromOperation * add --fast to stack ci build
11 lines
663 B
Makefile
11 lines
663 B
Makefile
STACKCMD := stack --install-ghc
|
|
.PHONY: all clean build test test-integration build-example build-integration
|
|
all: clean build test build-example build-integration
|
|
clean: ; (rm -Rf ./.stack-work ./example-app/.stack-work ./tests-integration/.stack-work);
|
|
build: ; ($(STACKCMD) haddock --fast);
|
|
test: ; ($(STACKCMD) test --fast);
|
|
build-example: build ; (cd ./example-app; $(STACKCMD) build --fast);
|
|
# a test-only project may exit with ExitFailure, despite building successfully
|
|
build-integration: build ; (cd ./tests-integration; $(STACKCMD) build --no-run-tests --fast);
|
|
test-integration: build-integration ; (cd ./tests-integration; $(STACKCMD) test --fast);
|