Skip to content

Commit 151646f

Browse files
authored
Publish .md5 and .sha1 signatures. (#79) (#80)
* Publish .md5 and .sha1 signatures. Signed-off-by: dblock <[email protected]> * Use OpenSearch 1.1. Signed-off-by: dblock <[email protected]>
1 parent 486c2e1 commit 151646f

File tree

3 files changed

+66
-49
lines changed

3 files changed

+66
-49
lines changed

.github/workflows/push-common-utils-jar.yml

-44
This file was deleted.

build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,11 @@ shadowJar {
148148
classifier = null
149149
}
150150

151+
shadowJar.doLast {
152+
ant.checksum algorithm: 'md5', file: it.archivePath
153+
ant.checksum algorithm: 'sha1', file: it.archivePath
154+
}
155+
151156
task sourcesJar(type: Jar) {
152157
classifier = 'sources'
153158
from sourceSets.main.allJava
@@ -197,9 +202,4 @@ publishing {
197202

198203
gradle.startParameter.setShowStacktrace(ShowStacktrace.ALWAYS)
199204
gradle.startParameter.setLogLevel(LogLevel.DEBUG)
200-
201-
signing {
202-
required { gradle.taskGraph.hasTask("publishShadowPublicationToSonatype-stagingRepository") }
203-
sign publishing.publications.shadow
204-
}
205205
}

scripts/build.sh

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
#!/bin/bash
2+
3+
# Copyright OpenSearch Contributors.
4+
# SPDX-License-Identifier: Apache-2.0
5+
6+
set -ex
7+
8+
function usage() {
9+
echo "Usage: $0 [args]"
10+
echo ""
11+
echo "Arguments:"
12+
echo -e "-v VERSION\t[Required] OpenSearch version."
13+
echo -e "-s SNAPSHOT\t[Optional] Build a snapshot, default is 'false'."
14+
echo -e "-a ARCHITECTURE\t[Optional] Build architecture, ignored."
15+
echo -e "-o OUTPUT\t[Optional] Output path, default is 'artifacts'."
16+
echo -e "-h help"
17+
}
18+
19+
while getopts ":h:v:s:o:a:" arg; do
20+
case $arg in
21+
h)
22+
usage
23+
exit 1
24+
;;
25+
v)
26+
VERSION=$OPTARG
27+
;;
28+
s)
29+
SNAPSHOT=$OPTARG
30+
;;
31+
o)
32+
OUTPUT=$OPTARG
33+
;;
34+
a)
35+
ARCHITECTURE=$OPTARG
36+
;;
37+
:)
38+
echo "Error: -${OPTARG} requires an argument"
39+
usage
40+
exit 1
41+
;;
42+
?)
43+
echo "Invalid option: -${arg}"
44+
exit 1
45+
;;
46+
esac
47+
done
48+
49+
if [ -z "$VERSION" ]; then
50+
echo "Error: You must specify the OpenSearch version"
51+
usage
52+
exit 1
53+
fi
54+
55+
[[ "$SNAPSHOT" == "true" ]] && VERSION=$VERSION-SNAPSHOT
56+
[ -z "$OUTPUT" ] && OUTPUT=artifacts
57+
58+
./gradlew build -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT
59+
./gradlew publishShadowPublicationToMavenLocal -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT
60+
mkdir -p $OUTPUT/maven/org/opensearch
61+
cp -r ./build/libs $OUTPUT/maven/org/opensearch/common-utils

0 commit comments

Comments
 (0)