Skip to content

Commit ca0d026

Browse files
committed
Install libuv in travis
1 parent 6c823ee commit ca0d026

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.travis.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
os: linux
2-
dist: xenial
2+
dist: trusty
33
language: scala
44
branches:
55
only:
@@ -10,8 +10,18 @@ jdk:
1010
- openjdk8
1111
before_cache:
1212
- find $HOME/.sbt -name "*.lock" -print -delete
13-
compiler: clang
14-
script: sbt test
13+
# compiler: clang
14+
before_install:
15+
# Install libuv
16+
- sudo add-apt-repository -y ppa:acooks/libwebsockets6
17+
- sudo apt-get update
18+
- sudo apt-get install -y libuv1-dev
19+
before_script:
20+
- curl https://raw.githubusercontent.com/scala-native/scala-native/master/scripts/travis_setup.sh | bash -x
21+
script:
22+
- sbt test
23+
# env:
24+
# - export CXX=clang++
1525
cache:
1626
directories:
1727
- $HOME/.sbt

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.3.10
1+
sbt.version=1.3.13

0 commit comments

Comments
 (0)