Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Dengfeng Liu authored Aug 31, 2018
1 parent e7f605a commit 2c283b7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
os:
- linux
dist: trusty
sudo: false
sudo: true
language: c

compiler:
Expand All @@ -15,6 +17,16 @@ addons:
- libevent-dev
- iptables-dev

before_install:
wget https://sources.lede-project.org/libubox-2018-07-25-c83a84af.tar.xz
xzcat libubox-2018-07-25-c83a84af.tar.xz | tar -C libubox-2018-07-25-c83a84af
cmake .
sudo make install

wget https://sources.lede-project.org/uci-2018-08-11-4c8b4d6e.tar.xz
xzcat uci-2018-08-11-4c8b4d6e.tar.xz | tar -C uci-2018-08-11-4c8b4d6e
cmake .
sudo make install
script:
- cmake .
- make

0 comments on commit 2c283b7

Please sign in to comment.