Skip to content

Commit

Permalink
Merge branch 'master' into calcinttype_int_to_long
Browse files Browse the repository at this point in the history
  • Loading branch information
ams-tschoening committed Feb 14, 2018
2 parents 347ec68 + 933c246 commit e0f79f3
Show file tree
Hide file tree
Showing 106 changed files with 6,989 additions and 2,212 deletions.
37 changes: 37 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
version: 2
defaults: &defaults
working_directory: ~/repo
docker:
- image: circleci/openjdk:8-jdk
environment:
JVM_OPTS: -Xmx3200m
TERM: dumb
jobs:
build:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.sbt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: cat /dev/null | sbt compilerJVM/universal:packageBin
- store_artifacts:
path: jvm/target/universal/kaitai-struct-compiler-*.zip
- save_cache:
paths:
- ~/.m2
key: v1-dependencies--{{ checksum "build.sbt" }}
test:
<<: *defaults
steps:
- run: cat /dev/null | sbt compilerJVM/test
workflows:
version: 2
build_test_deploy:
jobs:
- build
- test:
requires:
- build
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ project/boot/

# Unpacking complete binaries for testing purposes
/runnable
js/npm
22 changes: 0 additions & 22 deletions .idea/compiler.xml

This file was deleted.

9 changes: 9 additions & 0 deletions .idea/hydra.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 1 addition & 32 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 19 additions & 15 deletions .idea/modules/compiler-sources.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e0f79f3

Please sign in to comment.