This repository has been archived on 2022-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
app/Makefile
Jonas Franz 3c53045598
Some checks failed
the build failed
Add build_ios
2018-09-23 16:40:29 +02:00

45 lines
1.0 KiB
Makefile

GIT_LAST_COMMIT := $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')
ifneq ($(DRONE_TAG),)
VERSION ?= $(subst v,,$(DRONE_TAG))-$(GIT_LAST_COMMIT)
else
ifneq ($(DRONE_BRANCH),)
VERSION ?= $(subst release/v,,$(DRONE_BRANCH))-$(GIT_LAST_COMMIT)
else
VERSION ?= master-$(GIT_LAST_COMMIT)
endif
endif
.PHONY: test
test:
flutter test
.PHONY: build-all
build-all: build-release build-debug build-profile
.PHONY: build-release
build-release:
flutter build apk --release --build-name=$(VERSION)
.PHONY: build-debug
build-debug:
flutter build apk --debug --build-name=$(VERSION)
.PHONY: build-profile
build-profile:
flutter build apk --profile --build-name=$(VERSION)
.PHONY: build-ios-all
build-all: build-ios-release build-ios-debug build-ios-profile
.PHONY: build-ios-release
build-release:
flutter build ios --release --build-name=$(VERSION)
.PHONY: build-ios-debug
build-debug:
flutter build ios --debug --build-name=$(VERSION)
.PHONY: build-ios-profile
build-profile:
flutter build ios --profile --build-name=$(VERSION)