-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (17 loc) · 686 Bytes
/
Makefile
File metadata and controls
21 lines (17 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Makefile for verbalcode
PROJECT = verbalcode
VERSION = $(shell cargo metadata --no-deps --format-version 1 | jq -r '.packages[] .version' | head -1)
REVISION = 0
# list of all contract claims for actor signing (space-separated)
CLAIMS = wasmcloud:httpserver wasmcloud:keyvalue wasmcloud:builtin:logging
# registry url for our actor
REG_URL = localhost:5000/v2/$(PROJECT):$(VERSION)
# command to upload to registry (without last wasm parameter)
PUSH_REG_CMD = wash reg push --insecure $(REG_URL)
# friendly name for the actor
ACTOR_NAME = "verbalcode"
# optional call alias for actor
# ACTOR_ALIAS=nickname
include ./actor.mk
test::
cargo clippy --all-features --all-targets