Testing Travis
This commit is contained in:
parent
4c78c8eef8
commit
668ae53cbb
|
@ -0,0 +1,20 @@
|
||||||
|
language: c
|
||||||
|
|
||||||
|
dist: trusty
|
||||||
|
sudo: required
|
||||||
|
|
||||||
|
compiler:
|
||||||
|
- gcc
|
||||||
|
- clang
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- sudo apt-get install libtool autoconf git nasm
|
||||||
|
- chmod +x install.sh
|
||||||
|
- ./install.sh
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- mkdir build
|
||||||
|
- cd build
|
||||||
|
- cmake ..
|
||||||
|
|
||||||
|
script: make
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
#libcaesium
|
||||||
|
git clone https://github.com/Lymphatus/libcaesium.git
|
||||||
|
cd libcaesium
|
||||||
|
sudo chmod +x install.sh
|
||||||
|
./install.sh
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
||||||
|
sudo make install
|
Loading…
Reference in New Issue