mirror of
https://github.com/status-im/status-react.git
synced 2025-01-11 11:34:45 +00:00
Jakub Sokołowski
e87464e5ba
Squashed commits: - initial work - make base image use all the versions - make desktop images use the base image - update ci to use new images - use new toolversion script - update android image tag - add missing android-26 platform - fix installing packages with sdkmanager - fix installation of react-native-cli - specify prefix path for npm install -g Signed-off-by: Jakub Sokołowski <jakub@status.im>
20 lines
624 B
Makefile
20 lines
624 B
Makefile
__toolversion = $(shell $(GIT_ROOT)/scripts/toolversion $(1))
|
|
|
|
GIT_COMMIT = $(shell git rev-parse --short HEAD)
|
|
GIT_ROOT = $(shell git rev-parse --show-toplevel)
|
|
|
|
# WARNING: Remember to change the tag when updating the image
|
|
IMAGE_TAG = 1.1.0
|
|
IMAGE_NAME = statusteam/status-build-windows:$(IMAGE_TAG)
|
|
|
|
build:
|
|
docker build \
|
|
--build-arg="RNATIVE_VERSION=$(call __toolversion, react_native_desktop)" \
|
|
--build-arg="CONAN_VERSION=$(call __toolversion, conan)" \
|
|
--build-arg="CMAKE_VERSION=$(call __toolversion, cmake)" \
|
|
--label="commit=$(GIT_COMMIT)" \
|
|
-t $(IMAGE_NAME) .; \
|
|
|
|
push: build
|
|
docker push $(IMAGE_NAME)
|