blob: ee087b98fdb2875c093c6d543ba6387eb7e9fe35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
if [ -f build.sh ]; then
cd ../ || exit 1
fi
if [ "$IS_CONTAINER" != "" ]; then
autoreconf -ivf
./configure --enable-maintainer-mode
make dist
rm -rf autom4te.cache
else
if [[ "$(docker images -q netdata-gcc-builder:latest 2> /dev/null)" == "" ]]; then
docker build -t netdata-gcc-builder:latest -f build/Dockerfile .
fi
docker run --rm -it \
--env IS_CONTAINER=TRUE \
--volume "${PWD}:/project:Z" \
--workdir "/project" \
netdata:gcc \
./.travis/build.sh
fi
|