0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 06:58:58 -05:00

Add .travis.yml file.

This commit is contained in:
Andrey Antukh 2016-02-02 21:45:51 +02:00
parent bae3d7d9ef
commit cb3b5d45f6
2 changed files with 18 additions and 5 deletions

14
.travis.yml Normal file
View file

@ -0,0 +1,14 @@
language: clojure
lein: lein
sudo: false
script:
./scripts/build
node out/tests.js
jdk:
- oraclejdk8
node_js:
- "5.4.1"

View file

@ -8,14 +8,13 @@
(let [start (System/nanoTime)]
(b/build
(b/inputs "src")
{:main 'uxbox.core
:output-to "resources/public/js/main.js"
:output-dir "resources/public/js"
(b/inputs "src" "test")
{:main 'uxbox.test-runner
:output-to "out/tests.js"
:output-dir "out"
:parallel-build false
:optimizations :advanced
:language-in :ecmascript5
:language-out :ecmascript5
:asset-path "/js"
:verbose true})
(println "... done. Elapsed" (/ (- (System/nanoTime) start) 1e9) "seconds"))