You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
454 B
12 lines
454 B
language: java # to trigger the build on a 'jvm-otp' travis worker
|
|
jdk:
|
|
- oraclejdk8
|
|
env:
|
|
- ACTIVATOR_VERSION=1.2.12 \
|
|
ACTIVATOR_ZIP_FILE=typesafe-activator-${ACTIVATOR_VERSION}-minimal.zip
|
|
before_script:
|
|
- wget http://downloads.typesafe.com/typesafe-activator/${ACTIVATOR_VERSION}/${ACTIVATOR_ZIP_FILE}
|
|
- unzip -q ${ACTIVATOR_ZIP_FILE}
|
|
- set SBT_OPTS= -Xms256m -Xmx512m
|
|
script:
|
|
- activator-${ACTIVATOR_VERSION}-minimal/activator compile
|