MineLittlePony/.travis.yml

19 lines
341 B
YAML
Raw Normal View History

language: java
jdk:
2020-05-24 00:08:44 +02:00
- openjdk8
jobs:
include:
2020-05-24 00:58:05 +02:00
- stage: init
script: ./gradlew setupCIWorkspace
2020-05-24 00:08:44 +02:00
- stage: check
script: ./gradlew check
- stage: publish
script: ./gradlew build publish
stages:
2020-05-24 00:58:05 +02:00
- name: init
2020-05-24 00:08:44 +02:00
- name: check
if: type IN (pull_request)
- name: publish
if: NOT type IN (pull_request)