forked from External/mage
- dev: added data collectors API to collect and process game data in real time; - tests: added game logs output in all unit tests (enabled by default); - tests: added games history storage (decks, game logs, chats - disabled by default);
14 lines
No EOL
318 B
YAML
14 lines
No EOL
318 B
YAML
language: java
|
|
jdk:
|
|
- openjdk17
|
|
dist: jammy
|
|
git:
|
|
depth: 3
|
|
submodules: false
|
|
before_install:
|
|
- echo "MAVEN_OPTS='-Xmx2g'" > ~/.mavenrc
|
|
script:
|
|
- mvn test -B -Dxmage.dataCollectors.printGameLogs=false -Dlog4j.configuration=file:${TRAVIS_BUILD_DIR}/.travis/log4j.properties
|
|
cache:
|
|
directories:
|
|
- $HOME/.m2 |