This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-01
Channels
- # announcements (3)
- # beginners (59)
- # calva (23)
- # cider (58)
- # clojure (125)
- # clojure-dev (18)
- # clojure-dusseldorf (1)
- # clojure-europe (21)
- # clojure-germany (1)
- # clojure-hamburg (1)
- # clojure-italy (13)
- # clojure-nl (29)
- # clojure-poland (3)
- # clojure-spec (61)
- # clojure-uk (74)
- # clojurescript (12)
- # core-async (6)
- # cursive (4)
- # data-science (7)
- # datomic (14)
- # defnpodcast (1)
- # events (4)
- # fulcro (72)
- # juxt (36)
- # kaocha (3)
- # nginx (3)
- # off-topic (14)
- # pathom (5)
- # ring-swagger (68)
- # shadow-cljs (25)
- # spacemacs (8)
- # sql (42)
- # tools-deps (8)
- # vim (6)
I have some problems with karma on circle-ci 😕 some tests just fail, rerunning them succeeds https://circleci.com/gh/heyarne/airsonic-ui/32
https://circleci.com/gh/heyarne/airsonic-ui/33 is the same code, just rebuilt
FWIW I've been using karma tests on circle-ci for a month or so now and had no issues
here's my karma.conf.js: https://github.com/Lokeh/hx/blob/master/karma.conf.js
@lilactown do you use it locally, too?
@arne-clojurians it seems like compilation didn't finish before the tests are run
shadow-cljs - config: /home/circleci/repo/shadow-cljs.edn cli version: 2.8.25 node: v10.15.3
shadow-cljs - updating dependencies
shadow-cljs - dependencies updated
[:test] Compiling ...
> [email protected] test:run /home/circleci/repo
> karma start --single-run
there have been issues before with circleci killing build processes running OOM. not sure how big your build is but it seems to help to set :jvm-opts ["-Xmx2G"]
(limiting the JVM to max 2gig ram)