If anybody's interested, here's a simple yml confi...
# kobalt
e
If anybody's interested, here's a simple yml configuration for circleci and Kobalt:
Copy code
machine:
  java:
    version: oraclejdk8

dependencies:
  override:
     - chmod +x kobaltw

test:
  override:
    - ./kobaltw assemble test
  post:
    - cp -r kobaltBuild/test-output/* $CIRCLE_TEST_REPORTS/
👍 1