mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
f01646aeb5
Improves and reorganizes how nlp pipelines are setup. Now users can choose from many options, depending on their hardware and usage scenario. This is the base to use more languages without depending on what stanford-nlp supports. Support then is involves to text extraction and simple regex-ner processing.
28 lines
475 B
YAML
28 lines
475 B
YAML
language: scala
|
|
scala:
|
|
- 2.13.3
|
|
|
|
jdk:
|
|
- openjdk8
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.ivy2/cache
|
|
- $HOME/.sbt/boot
|
|
- $HOME/.coursier/cache
|
|
- $HOME/.cache/coursier
|
|
- sysconfcpus
|
|
|
|
install:
|
|
- TRAVIS_NODE_VERSION="10" nvm install node
|
|
- nvm use node
|
|
- node --version
|
|
- npm --version
|
|
- npm install -g elm
|
|
|
|
before_script:
|
|
- export TZ=Europe/Berlin
|
|
|
|
script:
|
|
- sbt -J-XX:+UseG1GC ++$TRAVIS_SCALA_VERSION ";project root ;scalafmtCheckAll ;make ;test"
|