forked from softprops/lambda-rust
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile
42 lines (33 loc) · 1.14 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
DOCKER ?= docker
INPUT_RELEASE_VERSION ?= 0.4.0
RUST_VERSION ?= 1.76.0
REPO ?= rustserverless/lambda-rust
TAG ?= latest
publish: build
$(DOCKER) push $(REPO):${TAG}
publish-arm64: build-arm64
$(DOCKER) push $(REPO):${TAG}-arm64
publish-tag: build publish
$(DOCKER) tag $(REPO):${TAG} "$(REPO):$(INPUT_RELEASE_VERSION)-rust-$(RUST_VERSION)"
$(DOCKER) push "$(REPO):$(INPUT_RELEASE_VERSION)-rust-$(RUST_VERSION)"
publish-tag-arm64: build-arm64 publish-arm64
$(DOCKER) tag "$(REPO):${TAG}-arm64" "$(REPO):$(INPUT_RELEASE_VERSION)-rust-$(RUST_VERSION)-arm64"
$(DOCKER) push "$(REPO):$(INPUT_RELEASE_VERSION)-rust-$(RUST_VERSION)-arm64"
build:
$(DOCKER) build --build-arg RUST_VERSION=$(RUST_VERSION) -t $(REPO):${TAG} .
build-arm64:
$(DOCKER) build --build-arg RUST_VERSION=$(RUST_VERSION) -t "$(REPO):${TAG}-arm64" -f Dockerfile_arm64 .
test:
@tests/test.sh
debug: build
$(DOCKER) run --rm -it \
-u $(id -u):$(id -g) \
-v ${PWD}:/code:Z \
-v ${HOME}/.cargo/registry:/cargo/registry \
-v ${HOME}/.cargo/git:/cargo/git \
--entrypoint=/bin/bash \
$(REPO):$(TAG)
check:
$(DOCKER) run --rm \
--entrypoint=/usr/local/bin/latest.sh \
$(REPO)