mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
865 B
35 lines
865 B
language: cpp |
|
cache: |
|
apt: true |
|
os: |
|
- linux |
|
sudo: required |
|
dist: trusty |
|
addons: |
|
apt: |
|
packages: |
|
- build-essential |
|
- cmake |
|
- g++ |
|
- clang |
|
- libboost-chrono-dev |
|
- libboost-date-time-dev |
|
- libboost-filesystem-dev |
|
- libboost-program-options-dev |
|
- libboost-system-dev |
|
- libboost-thread-dev |
|
- libminiupnpc-dev |
|
- libssl-dev |
|
compiler: |
|
- gcc |
|
- clang |
|
before_install: |
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi |
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install openssl miniupnpc ; fi |
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew unlink boost openssl && brew link boost openssl -f ; fi |
|
env: |
|
matrix: |
|
- BUILD_TYPE=Release UPNP=ON |
|
- BUILD_TYPE=Release UPNP=OFF |
|
script: |
|
- cd build && cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DWITH_UPNP=${UPNP} && make
|
|
|