Skip to content

Commit 492e0f2

Browse files
committed
circleci
1 parent d694345 commit 492e0f2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
NAME=sshfront
22
OWNER=gliderlabs
33
ARCH=$(shell uname -m)
4+
RMFLAG=--rm
45
VERSION=0.2.0
56

67
build:
@@ -22,7 +23,7 @@ example: build
2223

2324
test:
2425
docker build -t $(NAME)-tests tests
25-
docker run --rm \
26+
docker run $(RMFLAG) \
2627
-v $(PWD)/tests:/tests \
2728
-v $(PWD)/build/Linux/sshfront:/bin/sshfront \
2829
$(NAME)-tests \

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111

1212
test:
1313
override:
14-
- /bin/true
14+
- make test RMFLAG=
1515

1616
deployment:
1717
release:

0 commit comments

Comments
 (0)