We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d694345 commit 492e0f2Copy full SHA for 492e0f2
Makefile
@@ -1,6 +1,7 @@
1
NAME=sshfront
2
OWNER=gliderlabs
3
ARCH=$(shell uname -m)
4
+RMFLAG=--rm
5
VERSION=0.2.0
6
7
build:
@@ -22,7 +23,7 @@ example: build
22
23
24
test:
25
docker build -t $(NAME)-tests tests
- docker run --rm \
26
+ docker run $(RMFLAG) \
27
-v $(PWD)/tests:/tests \
28
-v $(PWD)/build/Linux/sshfront:/bin/sshfront \
29
$(NAME)-tests \
circle.yml
@@ -11,7 +11,7 @@ dependencies:
11
12
13
override:
14
- - /bin/true
+ - make test RMFLAG=
15
16
deployment:
17
release:
0 commit comments