aboutsummaryrefslogtreecommitdiff
path: root/aux/ci
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-02-08 03:08:34 -0300
committerEuAndreh <eu@euandre.org>2021-02-08 03:08:34 -0300
commit148314bdbbf7ef1c60e198e2e3da703023a5425a (patch)
tree915df0e9d812d7d77fdd1c25c913e2b4973051b5 /aux/ci
parentaux/ci/: Use /srv over /data path (diff)
downloadserver-148314bdbbf7ef1c60e198e2e3da703023a5425a.tar.gz
server-148314bdbbf7ef1c60e198e2e3da703023a5425a.tar.xz
Update aux/ files
Diffstat (limited to 'aux/ci')
-rwxr-xr-xaux/ci/ci-build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/aux/ci/ci-build.sh b/aux/ci/ci-build.sh
index bff1216..81ee1fd 100755
--- a/aux/ci/ci-build.sh
+++ b/aux/ci/ci-build.sh
@@ -41,10 +41,10 @@ EOF
RUNNER='sh -c'
fi
- if [ -f ./bootstrap ]; then
- COMMAND='./bootstrap && ./configure && make clean all check distcheck public'
+ if [ -f ./configure ]; then
+ COMMAND='./configure && make clean check public'
else
- COMMAND='make clean check public'
+ COMMAND='make CC=cc clean check public'
fi
$RUNNER "$COMMAND"