forked from vanadium/core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (21 loc) · 650 Bytes
/
Makefile
File metadata and controls
24 lines (21 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SHELL := /bin/bash -euo pipefail
VDLPATH ?= $(shell pwd)
export VDLPATH
vdlgen:
go run v.io/x/ref/cmd/vdl generate --lang=go v.io/...
.PHONY: test-integration
test-integration:
@echo "VDLPATH" ${VDLPATH}
go test -p 1 \
v.io/x/ref/cmd/principal \
v.io/x/ref/services/identity/identityd \
v.io/x/ref/services/xproxy/xproxyd \
v.io/x/ref/services/mounttable/mounttabled \
v.io/x/ref/services/debug/debug \
v.io/x/ref/services/agent/v23agentd \
v.io/x/ref/services/agent/vbecome \
v.io/x/ref/services/agent/agentlib \
v.io/x/ref/test/hello \
v.io/x/ref/examples/tunnel/tunneld \
v.io/x/ref/examples/rps/rpsbot \
-v23.tests