PSF-BotServer/.travis.yml

32 lines
782 B
YAML
Raw Normal View History

2016-07-12 02:21:52 -04:00
language: scala
2017-08-16 18:34:49 -04:00
jdk: oraclejdk8
dist: trusty
scala:
- 2.13.2
env:
- SBT_COMMAND="test:compile quiet:test packArchiveZip"
- SBT_COMMAND="coverage test:compile quiet:test coverageReport"
2019-10-11 10:34:18 -04:00
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt
before_cache:
- rm -fv $HOME/.ivy2/.sbt.ivy.lock
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete
- find $HOME/.sbt -name "*.lock" -print -delete
2016-07-26 22:08:30 -04:00
before_script:
2016-07-30 16:52:59 -04:00
- wget https://github.com/psforever/PSCrypto/releases/download/v1.1/pscrypto-lib-1.1.zip
- unzip pscrypto-lib-1.1.zip
2016-07-26 22:31:54 -04:00
script:
- sbt ++$TRAVIS_SCALA_VERSION $SBT_COMMAND
2016-07-12 02:21:52 -04:00
after_success:
- bash <(curl -s https://codecov.io/bash)
addons:
artifacts:
paths:
- $(ls target/pslogin*.zip | tr "\n" ":")