We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c823ee commit ca0d026Copy full SHA for ca0d026
.travis.yml
@@ -1,5 +1,5 @@
1
os: linux
2
-dist: xenial
+dist: trusty
3
language: scala
4
branches:
5
only:
@@ -10,8 +10,18 @@ jdk:
10
- openjdk8
11
before_cache:
12
- find $HOME/.sbt -name "*.lock" -print -delete
13
-compiler: clang
14
-script: sbt test
+# compiler: clang
+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++
25
cache:
26
directories:
27
- $HOME/.sbt
project/build.properties
@@ -1 +1 @@
-sbt.version=1.3.10
+sbt.version=1.3.13
0 commit comments