mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
c32e6d6730
Installs dependencies (including rust) and runs the existing test suite. TODO: Introduce build matrix utilizing the rust toolchain to run test suites both with and without the rust components.
11 lines
293 B
YAML
11 lines
293 B
YAML
language: c
|
|
sudo: enabled
|
|
dist: trusty
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get -y install libevent-dev libseccomp2 zlib1g-dev
|
|
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
|
|
|
|
script: ./autogen.sh && ./configure --disable-asciidoc && make test
|