mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 10:43:03 +01:00
Enable .travis.yml check and use non-markdown license.
This commit is contained in:
parent
5b30ecf2e4
commit
4557614443
29
.travis.yml
29
.travis.yml
@ -1,3 +1,4 @@
|
|||||||
|
---
|
||||||
language: python
|
language: python
|
||||||
python: nightly
|
python: nightly
|
||||||
|
|
||||||
@ -18,19 +19,19 @@ cache:
|
|||||||
- $HOME/cache
|
- $HOME/cache
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# Where to find libraries.
|
# Where to find libraries.
|
||||||
- export LD_LIBRARY_PATH=$HOME/cache/usr/lib
|
- export LD_LIBRARY_PATH=$HOME/cache/usr/lib
|
||||||
- export PKG_CONFIG_PATH=$HOME/cache/usr/lib/pkgconfig
|
- export PKG_CONFIG_PATH=$HOME/cache/usr/lib/pkgconfig
|
||||||
# c-sodium
|
# c-sodium
|
||||||
- git clone --depth=1 --branch=stable https://github.com/jedisct1/libsodium ../libsodium
|
- git clone --depth=1 --branch=stable https://github.com/jedisct1/libsodium ../libsodium
|
||||||
- test -f $HOME/cache/usr/lib/libsodium.so || (cd ../libsodium && ./configure --prefix=$HOME/cache/usr && make install -j$(nproc))
|
- test -f $HOME/cache/usr/lib/libsodium.so || (cd ../libsodium && ./configure --prefix=$HOME/cache/usr && make install -j$(nproc))
|
||||||
# c-toxcore
|
# c-toxcore
|
||||||
- git clone --depth=1 https://github.com/TokTok/c-toxcore ../c-toxcore
|
- git clone --depth=1 https://github.com/TokTok/c-toxcore ../c-toxcore
|
||||||
- test -f $HOME/cache/usr/lib/libtoxcore.so || (cd ../c-toxcore && cmake -B_build -H. -DCMAKE_INSTALL_PREFIX:PATH=$HOME/cache/usr && make -C_build install -j$(nproc))
|
- test -f $HOME/cache/usr/lib/libtoxcore.so || (cd ../c-toxcore && cmake -B_build -H. -DCMAKE_INSTALL_PREFIX:PATH=$HOME/cache/usr && make -C_build install -j$(nproc))
|
||||||
# astyle
|
# astyle
|
||||||
- wget -O ../astyle.tar.gz https://deb.debian.org/debian/pool/main/a/astyle/astyle_2.06.orig.tar.gz
|
- wget -O ../astyle.tar.gz https://deb.debian.org/debian/pool/main/a/astyle/astyle_2.06.orig.tar.gz
|
||||||
- test -f $HOME/cache/astyle/build/gcc/bin/astyle || (tar -xf ../astyle.tar.gz -C "$HOME/cache" && make -C "$HOME/cache/astyle/build/gcc" -j2)
|
- test -f $HOME/cache/astyle/build/gcc/bin/astyle || (tar -xf ../astyle.tar.gz -C "$HOME/cache" && make -C "$HOME/cache/astyle/build/gcc" -j2)
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- $HOME/cache/astyle/build/gcc/bin/astyle --options=astylerc $(find . -name "*.[ch]")
|
- $HOME/cache/astyle/build/gcc/bin/astyle --options=astylerc $(find . -name "*.[ch]")
|
||||||
- make ENABLE_PYTHON=1 -j2
|
- make ENABLE_PYTHON=1 -j2
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
load("//tools/project:build_defs.bzl", "project")
|
||||||
|
|
||||||
|
project()
|
||||||
|
|
||||||
cc_binary(
|
cc_binary(
|
||||||
name = "toxic",
|
name = "toxic",
|
||||||
srcs = glob([
|
srcs = glob([
|
||||||
|
Loading…
Reference in New Issue
Block a user