Skip to content

Commit

Permalink
JUCX: publish SNAPHOT and RELEASE jars to maven cental.
Browse files Browse the repository at this point in the history
  • Loading branch information
petro-rudenko committed Feb 6, 2020
1 parent 1c75cfd commit bfafc98
Show file tree
Hide file tree
Showing 7 changed files with 100 additions and 23 deletions.
32 changes: 13 additions & 19 deletions bindings/java/pom.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
</scm>

<properties>
<gpg.defaultKeyring>false</gpg.defaultKeyring>
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<ucx.src.dir>@abs_top_srcdir@/src</ucx.src.dir>
<jucx.src.dir>${ucx.src.dir}/../bindings/java</jucx.src.dir>
Expand All @@ -45,7 +47,6 @@
<ucs.lib.path>${ucx.build.dir}/src/ucs/.libs</ucs.lib.path>
<uct.lib.path>${ucx.build.dir}/src/uct/.libs</uct.lib.path>
<ucp.lib.path>${ucx.build.dir}/src/ucp/.libs</ucp.lib.path>
<ucx.inst.dir>@(DESTDIR)@/@libdir@</ucx.inst.dir>
<junit.version>4.12</junit.version>
<sources>**/jucx/**</sources>
<skipCopy>false</skipCopy>
Expand Down Expand Up @@ -164,7 +165,7 @@
<resource>
<directory>resources</directory>
<includes>
<include>**/*</include>
<include>libjucx.so</include>
</includes>
</resource>
</resources>
Expand All @@ -189,6 +190,12 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -205,6 +212,10 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerArgs>
<arg>-h</arg>
<arg>${native.dir}</arg>
</compilerArgs>
<source>1.8</source>
<target>1.8</target>
<includes>
Expand Down Expand Up @@ -252,12 +263,6 @@
<skip>${skipCopy}</skip>
<outputDirectory>${basedir}/resources</outputDirectory>
<resources>
<resource>
<directory>${ucx.inst.dir}</directory>
<includes>
<include>**/*.so</include>
</includes>
</resource>
<resource>
<directory>${native.dir}/.libs</directory>
<includes>
Expand Down Expand Up @@ -325,17 +330,6 @@
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-h</arg>
<arg>${native.dir}</arg>
</compilerArgs>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down
11 changes: 11 additions & 0 deletions bindings/java/src/main/native/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,17 @@ jar_DATA = $(jarfile)
clean-local:
-rm -rf $(java_build_dir)

set-version:
$(MVNCMD) versions:set -DnewVersion=${JUCX_VERSION}

# Publish JUCX jar to maven central
publish-snapshot:
@make set-version JUCX_VERSION=@VERSION@-SNAPSHOT
@make publish

publish:
$(MVNCMD) deploy -DskipTests ${ARGS}

test:
$(MVNCMD) test -DargLine="-XX:OnError='cat hs_err_pid%p.log'"
docs:
Expand Down
6 changes: 5 additions & 1 deletion buildlib/azure-pipelines-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stages:
- bash: |
set -eE
gcc --version
./contrib/configure-release
./contrib/configure-release --with-java
./contrib/buildrpm.sh -s -t -b
displayName: Build tarball
Expand All @@ -41,3 +41,7 @@ stages:
assets: |
./ucx-*.tar.gz
./rpm-dist/ucx-*.src.rpm
- template: jucx-publish.yml
parameters:
target: publish
2 changes: 1 addition & 1 deletion buildlib/azure-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The local container can be entered and checked out using a command sequence
similar to:

```shell
$ cd ..../ucx
$ cd ../../ucx
$ docker run --rm -ti -v `pwd`:`pwd` -w `pwd` ucfconsort.azurecr.io/ucx/centos7:1 /bin/bash
# mkdir build-centos7 && cd build-centos7
# ../configure
Expand Down
19 changes: 19 additions & 0 deletions buildlib/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,25 @@ stages:
./contrib/buildrpm.sh -s -t -b
displayName: Build tarball
# Publish JUCX to maven central
- job: publish_jucx
displayName: Publish JUCX SNAPSHOT artifact to maven central
container: fedora
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
steps:
- bash: ./autogen.sh
displayName: Setup autotools

- bash: |
set -eE
./contrib/configure-release --with-java
make -s -j`nproc`
displayName: Configure
- template: jucx-publish.yml
parameters:
target: publish-snapshot

- stage: Tests
dependsOn: [Codestyle]
jobs:
Expand Down
49 changes: 49 additions & 0 deletions buildlib/jucx-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
parameters:
target: publish
temp_cfg: $(System.DefaultWorkingDirectory)/bindings/java/src/main/native/build-java/tmp-settings.xml
gpg_dir: $(System.DefaultWorkingDirectory)/bindings/java/src/main/native/build-java/gpg

steps:
- bash: |
set -eE
{
echo -e "<settings><servers><server>"
echo -e "<id>ossrh</id><username>\${env.SONATYPE_USERNAME}</username>"
echo -e "<password>\${env.SONATYPE_PASSWORD}</password>"
echo -e "</server></servers></settings>"
} > ${{ parameters.temp_cfg }}
displayName: Generate temporary config
- task: DownloadSecureFile@1
displayName: Download Secure file
inputs:
secureFile: sparkucx-secret.gpg
name: privateKey

- task: DownloadSecureFile@1
displayName: Download Secure file
inputs:
secureFile: sparkucx-public.gpg
name: publicKey

- bash: |
set -eE
TAG=`git describe --tags`
make -C bindings/java/src/main/native/ set-version JUCX_VERSION=${TAG:1}
displayName: "Set JUCX release version"
condition: and(succeeded(), eq('${{ parameters.target }}', 'publish'))
- bash: |
mkdir ${{ parameters.gpg_dir }}
export GPG_TTY=`tty`
chmod 700 ${{ parameters.gpg_dir }}
cp $(publicKey.secureFilePath) ${{ parameters.gpg_dir }}/pubring.gpg
cp $(privateKey.secureFilePath) ${{ parameters.gpg_dir }}/secring.gpg
export GNUPGHOME=${{ parameters.gpg_dir }}
make -C bindings/java/src/main/native/ ${{ parameters.target }} \
ARGS="--settings ${{ parameters.temp_cfg }}"
displayName: Publish JUCX jar to maven central
env:
GPG_PASSPHRASE: $(GPG_PASSPHRASE)
SONATYPE_PASSWORD: $(SONATYPE_PASSWORD)
SONATYPE_USERNAME: $(SONATYPE_USERNAME)
4 changes: 2 additions & 2 deletions contrib/test_jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1194,14 +1194,14 @@ test_jucx() {

java -XX:ErrorFile=$WORKSPACE/hs_err_${BUILD_NUMBER}_%p.log \
-XX:OnError="cat $WORKSPACE/hs_err_${BUILD_NUMBER}_%p.log" \
-cp "bindings/java/src/main/native/build-java/*" \
-cp "bindings/java/resources/:bindings/java/src/main/native/build-java/*" \
org.openucx.jucx.examples.UcxReadBWBenchmarkReceiver \
s=$server_ip p=$JUCX_TEST_PORT &
java_pid=$!
sleep 10
java -XX:ErrorFile=$WORKSPACE/hs_err_${BUILD_NUMBER}_%p.log \
-XX:OnError="cat $WORKSPACE/hs_err_${BUILD_NUMBER}_%p.log" \
-cp "bindings/java/src/main/native/build-java/*" \
-cp "bindings/java/resources/:bindings/java/src/main/native/build-java/*" \
org.openucx.jucx.examples.UcxReadBWBenchmarkSender \
s=$server_ip p=$JUCX_TEST_PORT t=10000000
wait $java_pid
Expand Down

0 comments on commit bfafc98

Please sign in to comment.