mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 05:23:01 +01:00
36 lines
755 B
YAML
36 lines
755 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
before_script:
|
|
# installing libsodium, needed for Core
|
|
- git clone git://github.com/jedisct1/libsodium.git
|
|
- cd libsodium
|
|
- git checkout tags/0.4.2
|
|
- ./autogen.sh
|
|
- ./configure && make -j3
|
|
- sudo make install
|
|
- cd ..
|
|
# creating librarys' links and updating cache
|
|
- sudo ldconfig
|
|
- git clone https://github.com/irungentoo/ProjectTox-Core.git toxcore
|
|
- cd toxcore
|
|
- autoreconf -i
|
|
- ./configure --disable-tests --disable-ntox --disable-dht-bootstrap-daemon
|
|
- make -j2
|
|
- sudo make install
|
|
- cd ..
|
|
script:
|
|
- autoreconf -i
|
|
- ./configure
|
|
- make -j2
|
|
notifications:
|
|
email: false
|
|
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#tox-dev"
|
|
on_success: always
|
|
on_failure: always
|