Files
ocserv/.gitlab-ci.yml
2015-11-19 10:46:22 +01:00

19 lines
833 B
YAML

Build and Check with separate build dir:
script:
- git submodule update --init && autoreconf -fvi && mkdir -p build && cd build &&
../configure --with-all-tests && make -j4 && make check -j4 && make SKIP_LIBOPTS_CHECK=1 dist
except:
- tags
Build with minimal setup:
script:
- git submodule update --init && autoreconf -fvi &&
./configure --without-libnl --without-liboath --without-pam --without-radius --without-utmp --without-libwrap --without-http-parser --without-lz4 --without-gssapi --without-pcl-lib --without-protobuf && make -j4 && make check -j4
except:
- tags
Build and Check with asan:
script:
- git submodule update --init && autoreconf -fvi && CFLAGS="-fsanitize=address -g -O2" LDFLAGS="-static-libasan" &&
./configure --with-all-tests && make -j4 && make check -j4
except:
- tags