Skip to content

Commit ae6f304

Browse files
committed
Try to fix circleci caching.
1 parent 35dc925 commit ae6f304

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ nginx_url=http://nginx.org/download/$(nginx).tar.gz
88
clean:
99
rm -rf t/build t/servroot t/tmp
1010

11-
test: t/build/lib/perl5 t/build/sbin/unbound t/build/sbin/nginx
11+
prepare: t/build/lib/perl5 t/build/sbin/unbound t/build/sbin/nginx
12+
13+
test: prepare
1214
echo "" > /tmp/nginx_upstream_dynamic_servers_unbound_active_test.conf
1315
echo "" > /tmp/unbound.log
1416
if [ -f $(UNBOUND_PID) ] && ps -p `cat $(UNBOUND_PID)` > /dev/null; then kill -QUIT `cat $(UNBOUND_PID)`; fi

circle.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
dependencies:
22
pre:
3+
- make prepare
34
# Install newer version of Valgrind from custom repo so Test::Nginx's
45
# num-callers works: https://github.com/openresty/test-nginx/pull/17
56
- sudo add-apt-repository -y ppa:jtaylor/jtaylor

0 commit comments

Comments
 (0)