This repository has been archived on 2026-01-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ptp/.travis.yml
2019-02-01 22:36:25 -07:00

20 lines
324 B
YAML

language: java
install: true
before_install:
- chmod +x gradlew
stages:
- name: build
- name: unitTest
- name: integrationTest
jobs:
include:
- stage: build
script: ./gradlew build
- stage: unitTest
script: ./gradlew test
- stage: integrationTest
script: ./gradlew integrationTest