From 686a303cb5a4f83a35f4f8cb759fe251b1338722 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 27 Jan 2016 23:12:38 +0900 Subject: [PATCH] Add script to ensure that packaging is good --- releasechk | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 releasechk diff --git a/releasechk b/releasechk new file mode 100755 index 00000000..b7a50231 --- /dev/null +++ b/releasechk @@ -0,0 +1,5 @@ +#!/bin/sh -e + +git submodule update --init +./configure --with-mruby --with-neverbleed --enable-asio-lib +make -j3 distcheck DISTCHECK_CONFIGURE_FLAGS="--with-mruby --with-neverbleed --enable-asio-lib --enable-werror"