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 23:04:33 -07:00

27 lines
466 B
YAML

language: java
install: true
sudo: false
addons:
apt:
packages:
- oracle-java8-installer
before_install:
- chmod +x pandamonium-theorem-prover/gradlew
- cd pandamonium-theorem-prover
stages:
- name: build
- name: unit tests
- name: integration tests
jobs:
include:
- stage: build
script: ./gradlew build
- stage: unit tests
script: ./gradlew test
- stage: integration tests
script: ./gradlew integrationTest