Skip to content

Commit dd11431

Browse files
Configuration: Just one PR for RELEASE deployments (#59)
* Configuration: Just one PR for RELEASE deployments * Remove extra line * Remove deployment in Bintray for releases * Add badge * Solve #16 * Remove bintray plugin because of @AdrianRaFo comment * Fix URL (replace Bintray by Gradle Plugins Portal) * Add more details because of @AdrianRaFo comment * Format
1 parent 43a4f83 commit dd11431

7 files changed

+44
-25
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Hood
22

3+
[![Maven metadata URL](https://img.shields.io/maven-metadata/v?color=blue&label=latest%20release&metadataUrl=https%3A%2F%2Fplugins.gradle.org%2Fm2%2Fcom%2F47deg%2Fhood%2Fmaven-metadata.xml)](https://plugins.gradle.org/plugin/com.47deg.hood)
4+
35
**Hood** is a `Gradle` plugin to compare benchmarks and set the result as a `Github` status for a `Pull Request`.
46
**Hood** is built on [Arrow](https://arrow-kt.io/), a Functional companion to Kotlin's Standard Library.
57

6-
Please see the [Hood Microsite](https://47degrees.github.io/hood/) for more information.
8+
Please see the [Hood Microsite](https://47degrees.github.io/hood/) for more information.

build.gradle

+13-14
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
id "maven-publish"
1313
id "com.gradle.plugin-publish" version "0.11.0"
1414
id "org.jetbrains.kotlin.jvm" version "1.3.71"
15-
id "com.jfrog.bintray" version "1.8.5"
15+
id "com.jfrog.artifactory" version "4.15.2"
1616
}
1717

1818
repositories {
@@ -81,17 +81,16 @@ def findPropertyOrEnv(String key) {
8181
[project.properties[key], System.getenv(key)].find { it != null }
8282
}
8383

84-
bintray {
85-
publish = true
86-
user = findPropertyOrEnv("BINTRAY_USER") ?: "no.bintray.user"
87-
key = findPropertyOrEnv("BINTRAY_API_KEY") ?: "no.bintray.api.key"
88-
publications = ["HoodPublication"]
89-
configurations = ["archives"]
90-
pkg {
91-
repo = "hood"
92-
name = project.name
93-
userOrg = POM_DEVELOPER_ID
94-
licenses = ["Apache-2.0"]
95-
vcsUrl = "https://github.com/47degrees/hood.git"
96-
}
84+
artifactory {
85+
contextUrl = 'https://oss.jfrog.org'
86+
publish {
87+
repository {
88+
repoKey = 'oss-snapshot-local'
89+
username = findPropertyOrEnv("BINTRAY_USER") ?: "no.bintray.user"
90+
password = findPropertyOrEnv("BINTRAY_API_KEY") ?: "no.bintray.api.key"
91+
}
92+
defaults {
93+
publications 'HoodPublication'
94+
}
95+
}
9796
}

deploy-scripts/deploy.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ if [ "$TRAVIS_BRANCH" == "master" ]; then
77
if [[ "$VERSION_NAME" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
88
echo "Starting script for Release $VERSION_NAME"
99
. $(dirname $0)/deploy_release.sh
10-
# elif [[ "$VERSION_NAME" == *-SNAPSHOT ]]; then
11-
# echo "Starting script for Snapshot Release $VERSION_NAME"
12-
# . $(dirname $0)/deploy_snapshot.sh
10+
elif [[ "$VERSION_NAME" == *-SNAPSHOT ]]; then
11+
echo "Starting script for Snapshot $VERSION_NAME"
12+
. $(dirname $0)/deploy_snapshot.sh
1313
else
1414
echo "No deploy script matched version '$VERSION_NAME' on master"
1515
fi

deploy-scripts/deploy_common.sh

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
function getProperty {
55
PROP_KEY=$1
6-
PROP_VALUE=`cat gradle.properties | grep "$PROP_KEY" | cut -d'=' -f2`
6+
PROP_VALUE=`cat gradle.properties | grep -e "^$PROP_KEY=" | cut -d'=' -f2`
77
echo $PROP_VALUE
88
}
99

@@ -14,4 +14,14 @@ function fail {
1414

1515
SLUG="47degrees/hood"
1616
BRANCH="master"
17-
VERSION_NAME=$(getProperty "version")
17+
18+
#
19+
# If 'release_version' isn't published in Gradle Plugin Portal, 'version' value is replaced by 'release_version' value
20+
#
21+
RELEASE_VERSION=$(getProperty "release_version")
22+
LATEST_PUBLISHED_VERSION=$(curl https://plugins.gradle.org/m2/com/47deg/hood/maven-metadata.xml | grep latest | cut -d'>' -f2 | cut -d'<' -f1)
23+
if [ "$RELEASE_VERSION" != "$LATEST_PUBLISHED_VERSION" ]; then
24+
sed -i "s/version.*/version=$RELEASE_VERSION/g" gradle.properties
25+
fi
26+
27+
VERSION_NAME=$(getProperty "version")

deploy-scripts/deploy_release.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then
1414
elif ! [[ "$VERSION_NAME" =~ $VERSION_PATTERN ]]; then
1515
fail "Failed release deployment: wrong version. Expected '$VERSION_NAME' to have pattern 'X.Y.Z'"
1616
else
17-
./gradlew bintrayUpload
1817
./gradlew -Dgradle.publish.key=$GRADLE_PUBLISH_KEY -Dgradle.publish.secret=$GRADLE_PUBLISH_SECRET publishPlugins
1918
echo "Release '$VERSION_NAME' deployed!"
20-
fi
19+
fi

deploy-scripts/deploy_snapshot.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then
1414
elif ! [[ "$VERSION_NAME" =~ $VERSION_PATTERN ]]; then
1515
echo "Skipping snapshot deployment '$VERSION_NAME': This is probably a pre-release build"
1616
else
17-
./gradlew bintrayUpload
17+
./gradlew artifactoryPublish
1818
echo "Snapshot '$VERSION_NAME' deployed!"
19-
fi
19+
fi

gradle.properties

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Package definitions
22
group=com.47deg
3-
version=0.8.1
3+
# Just SNAPSHOT versions
4+
version=0.8.2-SNAPSHOT
5+
# Just RELEASE versions
6+
release_version=0.8.1
7+
#
8+
# NOTE:
9+
#
10+
# Update 'version' and 'release_version' when releasing.
11+
# If 'release_version' isn't published, 'version' value will be replaced by 'release_version' value automatically when deploying.
12+
# See deploy-scripts/deploy_common.sh
413

514
# Gradle options
615
org.gradle.warning.mode=all

0 commit comments

Comments
 (0)