forked from loafle/openapi-generator-original
Add drone.io CI for Java 11 test (#3472)
* add drone.yml * use maven wrapper instead * break the build * Revert "break the build" This reverts commit 69769d6cadd4c25ea5e8c5ed2bc5115ec29b0ecb. * add drone.io badge to README * update wording
This commit is contained in:
parent
93cb215531
commit
652b14c28f
9
CI/.drone.yml
Normal file
9
CI/.drone.yml
Normal file
@ -0,0 +1,9 @@
|
||||
kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: test
|
||||
image: hirokimatsumoto/alpine-openjdk-11
|
||||
commands:
|
||||
- ./mvnw clean install
|
||||
- ./mvnw --quiet verify -Psamples.droneio
|
@ -6,11 +6,13 @@
|
||||
[](https://circleci.com/gh/OpenAPITools/openapi-generator)
|
||||
[](https://app.shippable.com/github/OpenAPITools/openapi-generator)
|
||||
[](https://ci.appveyor.com/project/WilliamCheng/openapi-generator-wh2wu)
|
||||
[](https://cloud.drone.io/OpenAPITools/openapi-generator)
|
||||
|
||||
[`5.0.x`](https://github.com/OpenAPITools/openapi-generator/tree/5.0.x) branch: [](https://travis-ci.org/OpenAPITools/openapi-generator)
|
||||
[](https://circleci.com/gh/OpenAPITools/openapi-generator)
|
||||
[](https://app.shippable.com/github/OpenAPITools/openapi-generator)
|
||||
[](https://ci.appveyor.com/project/WilliamCheng/openapi-generator-wh2wu)
|
||||
[](https://cloud.drone.io/OpenAPITools/openapi-generator)
|
||||
</div>
|
||||
|
||||
<div align="center">
|
||||
|
14
pom.xml
14
pom.xml
@ -1244,6 +1244,20 @@
|
||||
<module>samples/server/petstore/spring-mvc-j8-localdatetime</module>
|
||||
</modules>
|
||||
</profile>
|
||||
<!-- test with JDK11 in drone.io -->
|
||||
<profile>
|
||||
<id>samples.droneio</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>env</name>
|
||||
<value>samples.droneio</value>
|
||||
</property>
|
||||
</activation>
|
||||
<modules>
|
||||
<!-- clients -->
|
||||
<module>samples/client/petstore/java/native</module>
|
||||
</modules>
|
||||
</profile>
|
||||
<!-- test with Haskell -->
|
||||
<profile>
|
||||
<id>samples.misc</id>
|
||||
|
Loading…
x
Reference in New Issue
Block a user