aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/targets/distcheck.sh
blob: 104893bacfb084725cd468773ba9c1af539587a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
build() {
    pushd build > /dev/null
    ../configure \
        CFLAGS="-Wall -g -O0" \
        --disable-silent-rules \
        --enable-ronn \
        --enable-tests \
        --enable-git-receiver \
        --enable-make \
        --enable-runserver
    popd > /dev/null

    make -C build distcheck
}

deploy() {
    FILES=( build/*.{*.tar.{gz,bz2,xz},zip} )
}