0
0
mirror of https://gitlab.torproject.org/tpo/core/tor.git synced 2024-09-20 12:22:14 +02:00
tor/.gitlab-ci.yml

16 lines
422 B
YAML
Raw Normal View History

2017-09-01 18:54:37 +02:00
before_script:
- apt-get update -qq
- apt-get upgrade -qy
2017-09-01 18:56:58 +02:00
2017-09-01 18:54:37 +02:00
build:
script:
- apt-get install -qy --fix-missing automake build-essential
libevent-dev libssl-dev zlib1g-dev
libseccomp-dev liblzma-dev libscrypt-dev
- ./autogen.sh
- ./configure --disable-asciidoc --enable-fatal-warnings
--disable-silent-rules
- make check || (e=$?; cat test-suite.log; exit $e)
- make install
2017-08-16 18:56:21 +02:00