Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

circleci support for opentracing-java #343

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: 2 # cirlcir ci build process for OpenTracing API for Java
jobs:
build:
branches:
only:
- develop
docker:
- image: circleci/openjdk:8-stretch-browsers-legacy
steps:
- checkout
- setup_remote_docker
- run:
name: build jar file for api service
command: mvn -f opentracing-api/pom.xml clean install
- run:
name: build jar file for mok service
command: mvn -f opentracing-mock/pom.xml clean install
- run:
name: build jar file for noop service
command: mvn -f opentracing-noop/pom.xml clean install
- run:
name: build jar file for testbed
command: mvn -f opentracing-testbed/pom.xml clean install
- run:
name: build jar file for util
command: mvn -f opentracing-util/pom.xml clean install
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems unnecessary. The install target at the root level would build all jars in one go and will probably be much faster.