Files
Holocore/bitbucket-pipelines.yml

31 lines
599 B
YAML

pipelines:
default:
- step:
name: fetch code
script:
- git submodule update --init
artifacts:
- pswgcommon/**
- client-holocore/**
- step:
name: test
image: openjdk:11-jdk-slim
caches:
- docker
- gradle
- gradlewrapper
script:
- ./gradlew test
artifacts:
- pswgcommon/**
- client-holocore/**
- .gradle/**
- build/**
services:
- docker
definitions:
caches:
gradlewrapper: ~/.gradle/wrapper