SGF-847 - Introduce Jenkins.
This commit is contained in:
84
Jenkinsfile
vendored
Normal file
84
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
pipeline {
|
||||
agent none
|
||||
|
||||
triggers {
|
||||
pollSCM 'H/10 * * * *'
|
||||
upstream(upstreamProjects: "spring-data-commons/master", threshold: hudson.model.Result.SUCCESS)
|
||||
}
|
||||
|
||||
options {
|
||||
disableConcurrentBuilds()
|
||||
}
|
||||
|
||||
stages {
|
||||
stage("Test") {
|
||||
parallel {
|
||||
stage("test: baseline") {
|
||||
agent {
|
||||
docker {
|
||||
image 'adoptopenjdk/openjdk8:latest'
|
||||
args '-v $HOME/.m2:/root/.m2'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh "./mvnw clean dependency:list test -Dsort -B"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Release to artifactory') {
|
||||
when {
|
||||
branch 'issue/*'
|
||||
}
|
||||
agent {
|
||||
docker {
|
||||
image 'adoptopenjdk/openjdk8:latest'
|
||||
args '-v $HOME/.m2:/root/.m2'
|
||||
}
|
||||
}
|
||||
|
||||
environment {
|
||||
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
|
||||
}
|
||||
|
||||
steps {
|
||||
sh "USERNAME=${ARTIFACTORY_USR} PASSWORD=${ARTIFACTORY_PSW} ./mvnw -Pci,snapshot -Dmaven.test.skip=true clean deploy -B"
|
||||
}
|
||||
}
|
||||
stage('Release to artifactory with docs') {
|
||||
when {
|
||||
branch 'master'
|
||||
}
|
||||
agent {
|
||||
docker {
|
||||
image 'adoptopenjdk/openjdk8:latest'
|
||||
args '-v $HOME/.m2:/root/.m2'
|
||||
}
|
||||
}
|
||||
|
||||
environment {
|
||||
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
|
||||
}
|
||||
|
||||
steps {
|
||||
sh "USERNAME=${ARTIFACTORY_USR} PASSWORD=${ARTIFACTORY_PSW} ./mvnw -Pci,snapshot -Dmaven.test.skip=true clean deploy -B"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
changed {
|
||||
script {
|
||||
slackSend(
|
||||
color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger',
|
||||
channel: '#spring-data-dev',
|
||||
message: "${currentBuild.fullDisplayName} - `${currentBuild.currentResult}`\n${env.BUILD_URL}")
|
||||
emailext(
|
||||
subject: "[${currentBuild.fullDisplayName}] ${currentBuild.currentResult}",
|
||||
mimeType: 'text/html',
|
||||
recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']],
|
||||
body: "<a href=\"${env.BUILD_URL}\">${currentBuild.fullDisplayName} is reported as ${currentBuild.currentResult}</a>")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
169
README.adoc
Normal file
169
README.adoc
Normal file
@@ -0,0 +1,169 @@
|
||||
image:https://jenkins.spring.io/buildStatus/icon?job=spring-data-gemfire%2Fmaster&subject=Moore%20(master)[link=https://jenkins.spring.io/view/SpringData/job/spring-data-gemfire/]
|
||||
image:https://jenkins.spring.io/buildStatus/icon?job=spring-data-gemfire%2F2.1.x&subject=Lovelace%20(2.1.x)[link=https://jenkins.spring.io/view/SpringData/job/spring-data-gemfire/]
|
||||
image:https://jenkins.spring.io/buildStatus/icon?job=spring-data-gemfire%2F1.9.x&subject=Ingalls%20(1.9.x)[link=https://jenkins.spring.io/view/SpringData/job/spring-data-gemfire/]
|
||||
|
||||
|
||||
= Spring Data for Pivotal GemFire
|
||||
|
||||
The primary goal of the https://projects.spring.io/spring-data-gemfire[Spring Data for Pivotal GemFire] project
|
||||
is to make it easier to build highly scalable, _Spring_ powered applications using https://pivotal.io/pivotal-gemfire[Pivotal GemFire]
|
||||
as the underlying distributed, in-memory data management platform.
|
||||
|
||||
= Examples
|
||||
|
||||
For examples on using the _Spring Data for Pivotal GemFire_, see the
|
||||
https://github.com/SpringSource/spring-gemfire-examples[spring-gemfire-examples] project.
|
||||
|
||||
= Getting Help
|
||||
|
||||
Read the main project https://projects.spring.io/spring-data-gemfire/[website] along with
|
||||
the https://docs.spring.io/spring-data-gemfire/docs/current/reference/html/[User Guide].
|
||||
|
||||
Look at the source code and the https://docs.spring.io/spring-data-gemfire/docs/current/api/[JavaDocs].
|
||||
|
||||
For more detailed questions, visit https://stackoverflow.com/questions/tagged/spring-data-gemfire[_StackOverflow_].
|
||||
|
||||
If you are new to _Spring_ as well as _Spring Data for Pivotal GemFire_, look for information about
|
||||
https://spring.io/projects[_Spring_ projects].
|
||||
|
||||
== Quick Start
|
||||
|
||||
For developers in a hurry, you can download the JAR using:
|
||||
|
||||
* Maven:
|
||||
[source,xml]
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-gemfire</artifactId>
|
||||
<version>${version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- nightly builds -->
|
||||
<repository>
|
||||
<id>spring-maven-snapshot</id>
|
||||
<name>Spring Maven SNAPSHOT Repository</name>
|
||||
<url>https://repo.spring.io/snapshot</url>
|
||||
<snapshots><enabled>true</enabled></snapshots>
|
||||
</repository>
|
||||
|
||||
<!-- milestones/release candidates-->
|
||||
<repository>
|
||||
<id>spring-maven-milestone</id>
|
||||
<name>Spring Maven Milestone Repository</name>
|
||||
<url>https://repo.spring.io/milestone</url>
|
||||
</repository>
|
||||
----
|
||||
|
||||
* Gradle:
|
||||
[source,groovy]
|
||||
----
|
||||
repositories {
|
||||
mavenRepo name: "spring-snapshot", urls: "https://repo.spring.io/snapshot"
|
||||
mavenRepo name: "spring-milestone", urls: "https://repo.spring.io/milestone"
|
||||
mavenRepo name: "spring-plugins" , urls: "https://repo.spring.io/plugins-release"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile "org.springframework.data:spring-data-geode:${version}"
|
||||
}
|
||||
----
|
||||
|
||||
* Configure a Pivotal GemFire cache and Region (REPLICATE, PARTITION and so on):
|
||||
[source,xml]
|
||||
----
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:gfe="http://www.springframework.org/schema/gemfire"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
|
||||
xsi:schemaLocation="
|
||||
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://www.springframework.org/schema/gemfire https://www.springframework.org/schema/gemfire/spring-gemfire.xsd">
|
||||
|
||||
<gfe:cache/>
|
||||
|
||||
<gfe:partitioned-region id="ExampleRegion" copies="2">
|
||||
|
||||
<bean id="gemfireTemplate" class="org.springframework.data.gemfire.GemfireTemplate" p:region-ref="ExampleRegion"/>
|
||||
</beans>
|
||||
----
|
||||
|
||||
* Use the Region to read/write data:
|
||||
[source,java]
|
||||
----
|
||||
region.put(Long.valueOf(1), new Person("Jon", "Doe"));
|
||||
----
|
||||
|
||||
* And/Or `GemFireTemplate` to interact with Pivotal GemFire:
|
||||
[source,java]
|
||||
----
|
||||
template.query("person = 1");
|
||||
----
|
||||
|
||||
= Building
|
||||
|
||||
_Spring Data for Pivotal GemFire_ uses Maven as its build system. To compile the project, simply type
|
||||
the following Maven command from the root folder:
|
||||
|
||||
[source]
|
||||
----
|
||||
mvn clean install
|
||||
----
|
||||
|
||||
= Contributing
|
||||
|
||||
Here are some ways for you to get involved in the community:
|
||||
|
||||
* Get involved with the _Spring_ community on the _Spring_ Community Forums (_StackOverflow_).
|
||||
Please help out on the https://stackoverflow.com/questions/tagged/spring-data-gemfire[forum]
|
||||
by responding to questions and joining the debate.
|
||||
* Create https://jira.spring.io/browse/SGF[JIRA] tickets for bugs and new features and comment and vote on the bugs
|
||||
you are interested in.
|
||||
* GitHub is for social coding. If you want to write code, we encourage contributions through pull requests
|
||||
from https://help.github.com/forking/[forks of this repository]. If you want to contribute code this way,
|
||||
please reference a JIRA ticket as well covering the specific issue you are addressing.
|
||||
* Watch for upcoming articles on _Spring_ by https://spring.io/blog[subscribing] to spring.io.
|
||||
|
||||
Before we accept a non-trivial patch or pull request we will need you to
|
||||
https://cla.pivotal.io/sign/spring[sign the Contributor License Agreement]. Signing the contributor’s agreement
|
||||
does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions,
|
||||
and you will get an author credit if we do. If you forget to do so, you'll be reminded when you submit a pull request.
|
||||
Active contributors might be asked to join the core team, and given the ability to merge pull requests.
|
||||
|
||||
= Running CI tasks locally
|
||||
|
||||
Since this pipeline is purely Docker-based, it's easy to:
|
||||
|
||||
* Debug what went wrong on your local machine.
|
||||
* Test out a a tweak to your `test.sh` script before sending it out.
|
||||
* Experiment against a new image before submitting your pull request.
|
||||
|
||||
All of these use cases are great reasons to essentially run what the CI server does on your local machine.
|
||||
|
||||
IMPORTANT: To do this you must have Docker installed on your machine.
|
||||
|
||||
1. `docker run -it --mount type=bind,source="$(pwd)",target=/spring-data-gemfire-github adoptopenjdk/openjdk8:latest /bin/bash`
|
||||
+
|
||||
This will launch the Docker image and mount your source code at `spring-data-gemfire-github`.
|
||||
+
|
||||
2. `cd spring-data-gemfire-github`
|
||||
+
|
||||
Next, run your tests from inside the container:
|
||||
+
|
||||
3. `./mvnw clean dependency:list test -Dsort` (or whatever profile you need to test out)
|
||||
|
||||
Since the container is binding to your source, you can make edits from your IDE and continue to run build jobs.
|
||||
|
||||
If you test building the artifact, do this:
|
||||
|
||||
1. `docker run -it --mount type=bind,source="$(pwd)",target=/spring-data-gemfire-github adoptopenjdk/openjdk8:latest /bin/bash`
|
||||
+
|
||||
This will launch the Docker image and mount your source code at `spring-data-gemfire-github`.
|
||||
+
|
||||
2. `cd spring-data-gemfire-github`
|
||||
+
|
||||
Next, try to package everything up from inside the container:
|
||||
+
|
||||
3. `./mvnw -Pci,snapshot -Dmaven.test.skip=true clean package`
|
||||
|
||||
NOTE: Docker containers can eat up disk space fast! From time to time, run `docker system prune` to clean out old images.
|
||||
|
||||
125
README.md
125
README.md
@@ -1,125 +0,0 @@
|
||||
Spring Data for Pivotal GemFire
|
||||
===============================
|
||||
|
||||
The primary goal of the [Spring Data for Pivotal GemFire](https://projects.spring.io/spring-data-gemfire) project
|
||||
is to make it easier to build highly scalable, _Spring_ powered applications using [Pivotal GemFire](https://pivotal.io/pivotal-gemfire)
|
||||
as the underlying distributed, in-memory data management platform.
|
||||
|
||||
# Examples
|
||||
|
||||
For examples on using the _Spring Data for Pivotal GemFire_, see the
|
||||
[spring-gemfire-examples](https://github.com/SpringSource/spring-gemfire-examples) project.
|
||||
|
||||
# Getting Help
|
||||
|
||||
Read the main project [website](https://projects.spring.io/spring-data-gemfire/) along with
|
||||
the [User Guide](https://docs.spring.io/spring-data-gemfire/docs/current/reference/html/).
|
||||
|
||||
Look at the source code and the [JavaDocs](https://docs.spring.io/spring-data-gemfire/docs/current/api/).
|
||||
|
||||
For more detailed questions, visit [_StackOverflow_](https://stackoverflow.com/questions/tagged/spring-data-gemfire).
|
||||
|
||||
If you are new to _Spring_ as well as _Spring Data for Pivotal GemFire_, look for information about
|
||||
[_Spring_ projects](https://spring.io/projects).
|
||||
|
||||
Quick Start
|
||||
-----------
|
||||
|
||||
For developers in a hurry, you can download the JAR using:
|
||||
|
||||
* Maven:
|
||||
|
||||
~~~~~ xml
|
||||
<dependency>
|
||||
<groupId>org.springframework.data</groupId>
|
||||
<artifactId>spring-data-gemfire</artifactId>
|
||||
<version>${version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- nightly builds -->
|
||||
<repository>
|
||||
<id>spring-maven-snapshot</id>
|
||||
<name>Spring Maven SNAPSHOT Repository</name>
|
||||
<url>https://repo.spring.io/snapshot</url>
|
||||
<snapshots><enabled>true</enabled></snapshots>
|
||||
</repository>
|
||||
|
||||
<!-- milestones/release candidates-->
|
||||
<repository>
|
||||
<id>spring-maven-milestone</id>
|
||||
<name>Spring Maven Milestone Repository</name>
|
||||
<url>https://repo.spring.io/milestone</url>
|
||||
</repository>
|
||||
~~~~~
|
||||
|
||||
* Gradle:
|
||||
|
||||
~~~~~ groovy
|
||||
repositories {
|
||||
mavenRepo name: "spring-snapshot", urls: "https://repo.spring.io/snapshot"
|
||||
mavenRepo name: "spring-milestone", urls: "https://repo.spring.io/milestone"
|
||||
mavenRepo name: "spring-plugins" , urls: "https://repo.spring.io/plugins-release"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile "org.springframework.data:spring-data-geode:${version}"
|
||||
}
|
||||
~~~~~
|
||||
|
||||
* Configure a Pivotal GemFire cache and Region (REPLICATE, PARTITION and so on):
|
||||
|
||||
~~~~~ xml
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:gfe="http://www.springframework.org/schema/gemfire"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
|
||||
xsi:schemaLocation="
|
||||
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://www.springframework.org/schema/gemfire https://www.springframework.org/schema/gemfire/spring-gemfire.xsd">
|
||||
|
||||
<gfe:cache/>
|
||||
|
||||
<gfe:partitioned-region id="ExampleRegion" copies="2">
|
||||
|
||||
<bean id="gemfireTemplate" class="org.springframework.data.gemfire.GemfireTemplate" p:region-ref="ExampleRegion"/>
|
||||
</beans>
|
||||
~~~~~
|
||||
|
||||
* Use the Region to read/write data:
|
||||
|
||||
~~~~~ java
|
||||
region.put(Long.valueOf(1), new Person("Jon", "Doe"));
|
||||
~~~~~
|
||||
|
||||
* And/Or `GemFireTemplate` to interact with Pivotal GemFire:
|
||||
|
||||
~~~~~ java
|
||||
template.query("person = 1");
|
||||
~~~~~
|
||||
|
||||
# Building
|
||||
|
||||
_Spring Data for Pivotal GemFire_ uses Maven as its build system. To compile the project, simply type
|
||||
the following Maven command from the root folder:
|
||||
|
||||
mvn clean install
|
||||
|
||||
# Contributing
|
||||
|
||||
|
||||
Here are some ways for you to get involved in the community:
|
||||
|
||||
* Get involved with the _Spring_ community on the _Spring_ Community Forums (_StackOverflow_).
|
||||
Please help out on the [forum](https://stackoverflow.com/questions/tagged/spring-data-gemfire)
|
||||
by responding to questions and joining the debate.
|
||||
* Create [JIRA](https://jira.spring.io/browse/SGF) tickets for bugs and new features and comment and vote on the bugs
|
||||
you are interested in.
|
||||
* GitHub is for social coding. If you want to write code, we encourage contributions through pull requests
|
||||
from [forks of this repository](https://help.github.com/forking/). If you want to contribute code this way,
|
||||
please reference a JIRA ticket as well covering the specific issue you are addressing.
|
||||
* Watch for upcoming articles on _Spring_ by [subscribing](https://spring.io/blog) to spring.io.
|
||||
|
||||
Before we accept a non-trivial patch or pull request we will need you to
|
||||
[sign the Contributor License Agreement](https://cla.pivotal.io/sign/spring). Signing the contributor’s agreement
|
||||
does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions,
|
||||
and you will get an author credit if we do. If you forget to do so, you'll be reminded when you submit a pull request.
|
||||
Active contributors might be asked to join the core team, and given the ability to merge pull requests.
|
||||
15
ci/build.sh
15
ci/build.sh
@@ -1,15 +0,0 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
[[ -d $PWD/maven && ! -d $HOME/.m2 ]] && ln -s $PWD/maven $HOME/.m2
|
||||
|
||||
spring_data_gemfire_artifactory=$(pwd)/spring-data-gemfire-artifactory
|
||||
|
||||
rm -rf $HOME/.m2/repository/org/springframework/data 2> /dev/null || :
|
||||
|
||||
cd spring-data-gemfire-github
|
||||
|
||||
./mvnw deploy \
|
||||
-Dmaven.test.skip=true \
|
||||
-DaltDeploymentRepository=distribution::default::file://${spring_data_gemfire_artifactory}
|
||||
20
ci/build.yml
20
ci/build.yml
@@ -1,20 +0,0 @@
|
||||
---
|
||||
platform: linux
|
||||
|
||||
image_resource:
|
||||
type: docker-image
|
||||
source:
|
||||
repository: openjdk
|
||||
tag: 8-jdk-alpine
|
||||
|
||||
inputs:
|
||||
- name: spring-data-gemfire-github
|
||||
|
||||
outputs:
|
||||
- name: spring-data-gemfire-artifactory
|
||||
|
||||
caches:
|
||||
- path: maven
|
||||
|
||||
run:
|
||||
path: spring-data-gemfire-github/ci/build.sh
|
||||
11
ci/test.sh
11
ci/test.sh
@@ -1,11 +0,0 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
[[ -d $PWD/maven && ! -d $HOME/.m2 ]] && ln -s $PWD/maven $HOME/.m2
|
||||
|
||||
rm -rf $HOME/.m2/repository/org/springframework/data 2> /dev/null || :
|
||||
|
||||
cd spring-data-gemfire-github
|
||||
|
||||
./mvnw clean dependency:list test -P${PROFILE} -Dsort -Dbundlor.enabled=false -B
|
||||
20
ci/test.yml
20
ci/test.yml
@@ -1,20 +0,0 @@
|
||||
---
|
||||
platform: linux
|
||||
|
||||
image_resource:
|
||||
type: docker-image
|
||||
source:
|
||||
repository: openjdk
|
||||
tag: 8-jdk-alpine
|
||||
|
||||
inputs:
|
||||
- name: spring-data-gemfire-github
|
||||
|
||||
outputs:
|
||||
- name: spring-data-gemfire-artifactory
|
||||
|
||||
caches:
|
||||
- path: maven
|
||||
|
||||
run:
|
||||
path: spring-data-gemfire-github/ci/test.sh
|
||||
41
pom.xml
41
pom.xml
@@ -277,6 +277,47 @@
|
||||
|
||||
<profiles>
|
||||
|
||||
<profile>
|
||||
<id>snapshot</id>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.jfrog.buildinfo</groupId>
|
||||
<artifactId>artifactory-maven-plugin</artifactId>
|
||||
<version>2.6.1</version>
|
||||
<inherited>false</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>build-info</id>
|
||||
<goals>
|
||||
<goal>publish</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<buildInfo>
|
||||
<buildUrl>{{BUILD_URL}}</buildUrl>
|
||||
</buildInfo>
|
||||
<deployProperties>
|
||||
<zip.name>spring-data-gemfire</zip.name>
|
||||
<zip.displayname>spring-data-gemfire</zip.displayname>
|
||||
<zip.deployed>false</zip.deployed>
|
||||
<archives>*:*:*:*@zip</archives>
|
||||
</deployProperties>
|
||||
<publisher>
|
||||
<contextUrl>https://repo.spring.io</contextUrl>
|
||||
<username>{{USERNAME}}</username>
|
||||
<password>{{PASSWORD}}</password>
|
||||
<repoKey>libs-snapshot-local</repoKey>
|
||||
<snapshotRepoKey>libs-snapshot-local</snapshotRepoKey>
|
||||
</publisher>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>release</id>
|
||||
<build>
|
||||
|
||||
Reference in New Issue
Block a user