-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate release process to GitHub Actions
Complete migration to GitHub Actions. See gh-
- Loading branch information
Showing
7 changed files
with
264 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: 'Publish Eclipse Update Site ' | ||
inputs: | ||
version: | ||
required: true | ||
build-number: | ||
required: true | ||
artifactory-username: | ||
required: true | ||
artifactory-password: | ||
required: true | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Stage | ||
id: stage | ||
shell: bash | ||
run: . ${{ github.action_path }}/publish-eclipse-update-site.sh; | ||
env: | ||
VERSION: "${{ inputs.version }}" | ||
BUILD_NUMBER: "${{ inputs.build-number }}" | ||
ARTIFACTORY_USERNAME: "${{ inputs.artifactory-username }}" | ||
ARTIFACTORY_PASSWORD: "${{ inputs.artifactory-password }}" |
60 changes: 60 additions & 0 deletions
60
.github/actions/publish-eclipse-update-site/publish-eclipse-update-site-pom-template.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.eclipse.m2e.maveneclipse</groupId> | ||
<artifactId>m2eclipse-maveneclipse-publish</artifactId> | ||
<version>0.0.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<properties> | ||
<tycho-extras-version>1.1.0</tycho-extras-version> | ||
</properties> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho.extras</groupId> | ||
<artifactId>tycho-p2-extras-plugin</artifactId> | ||
<version>${tycho-extras-version}</version> | ||
<executions> | ||
<execution> | ||
<phase>prepare-package</phase> | ||
<goals> | ||
<goal>mirror</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<source> | ||
##repositories## | ||
</source> | ||
<destination>${project.build.directory}/repository</destination> | ||
<compress>true</compress> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<version>1.8</version> | ||
<executions> | ||
<execution> | ||
<phase>prepare-package</phase> | ||
<configuration> | ||
<propertyPrefix>mvn</propertyPrefix> | ||
<target> | ||
<mkdir dir="${mvnproject.build.directory}/repackage"/> | ||
<unzip src="${mvnproject.build.directory}/repository/artifacts.jar" dest="${mvnproject.build.directory}/repackage"/> | ||
<replace file="${mvnproject.build.directory}/repackage/artifacts.xml" token="${repoUrl}" value="@@@{repoUrl}/@@@{version}"/> | ||
<replace file="${mvnproject.build.directory}/repackage/artifacts.xml" token="@@@" value="$"/> | ||
<touch file="${mvnproject.build.directory}/repackage/artifacts.xml" millis="0" /> | ||
<zip destfile="${mvnproject.build.directory}/repository/artifacts.jar" update="true" basedir="${mvnproject.build.directory}/repackage"/> | ||
</target> | ||
</configuration> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
51 changes: 51 additions & 0 deletions
51
.github/actions/publish-eclipse-update-site/publish-eclipse-update-site.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
buildInfo=$( jfrog rt curl api/build/spring-javaformat-${VERSION}/${BUILD_NUMBER} ) | ||
groupId=$( echo ${buildInfo} | jq -r '.buildInfo.modules[0].id' | sed 's/\(.*\):.*:.*/\1/' ) | ||
version=$( echo ${buildInfo} | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' ) | ||
|
||
echo "Publishing ${buildName}/${buildNumber} (${groupId}:${version}) to Eclipse Update Site" | ||
|
||
jfrog rt dl --build spring-javaformat-${VERSION}/${BUILD_NUMBER} '**/io.spring.javaformat.eclipse.site*.zip' | ||
|
||
curl \ | ||
-s \ | ||
--connect-timeout 240 \ | ||
--max-time 2700 \ | ||
-u ${ARTIFACTORY_USERNAME}:${ARTIFACTORY_PASSWORD} \ | ||
-f \ | ||
-H "X-Explode-Archive: true" \ | ||
-X PUT \ | ||
-T "io/spring/javaformat/io.spring.javaformat.eclipse.site/${version}/io.spring.javaformat.eclipse.site-${version}.zip" \ | ||
"https://repo.spring.io/javaformat-eclipse-update-site/${version}/" > /dev/null || { echo "Failed to publish" >&2; exit 1; } | ||
|
||
releasedVersions=$( curl -s -f -X GET https://repo.spring.io/api/storage/javaformat-eclipse-update-site | jq -r '.children[] | .uri' | cut -c 2- | grep '[0-9].*' | sort -V ) | ||
|
||
repositories="" | ||
while read -r releasedVersion; do | ||
echo "Adding repository for ${releasedVersion}" | ||
repositories="${repositories}<repository><url>https://repo.spring.io/javaformat-eclipse-update-site/${releasedVersion}</url><layout>p2</layout></repository>" | ||
done <<< "${releasedVersions}" | ||
|
||
sed "s|##repositories##|${repositories}|" ${GITHUB_ACTION_PATH}/publish-eclipse-update-site-pom-template.xml > publish-eclipse-update-site-pom.xml | ||
./mvnw -f publish-eclipse-update-site-pom.xml clean package || { echo "Failed to publish" >&2; exit 1; } | ||
|
||
curl \ | ||
-s \ | ||
--connect-timeout 240 \ | ||
--max-time 2700 \ | ||
-u ${ARTIFACTORY_USERNAME}:${ARTIFACTORY_PASSWORD} \ | ||
-f \ | ||
-X PUT \ | ||
-T "target/repository/content.jar" \ | ||
"https://repo.spring.io/javaformat-eclipse-update-site/" > /dev/null || { echo "Failed to publish" >&2; exit 1; } | ||
|
||
curl \ | ||
-s \ | ||
--connect-timeout 240 \ | ||
--max-time 2700 \ | ||
-u ${ARTIFACTORY_USERNAME}:${ARTIFACTORY_PASSWORD} \ | ||
-f \ | ||
-X PUT \ | ||
-T "target/repository/artifacts.jar" \ | ||
"https://repo.spring.io/javaformat-eclipse-update-site/" > /dev/null || { echo "Failed to publish" >&2; exit 1; } | ||
|
||
echo "Publish complete" |
57 changes: 57 additions & 0 deletions
57
.github/actions/publish-eclipse-update-site/xpublish-eclipse-update-site.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
source $(dirname $0)/common.sh | ||
|
||
buildName=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.name' ) | ||
buildNumber=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.number' ) | ||
groupId=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/\(.*\):.*:.*/\1/' ) | ||
version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' ) | ||
|
||
echo "Publishing ${buildName}/${buildNumber} to Eclipse Update Site" | ||
curl \ | ||
-s \ | ||
--connect-timeout 240 \ | ||
--max-time 2700 \ | ||
-u ${ARTIFACTORY_USERNAME}:${ARTIFACTORY_PASSWORD} \ | ||
-f \ | ||
-H "X-Explode-Archive: true" \ | ||
-X PUT \ | ||
-T "artifactory-repo/io/spring/javaformat/io.spring.javaformat.eclipse.site/${version}/io.spring.javaformat.eclipse.site-${version}.zip" \ | ||
"https://repo.spring.io/javaformat-eclipse-update-site/${version}/" > /dev/null || { echo "Failed to publish" >&2; exit 1; } | ||
|
||
releasedVersions=$( curl -s -f -X GET https://repo.spring.io/api/storage/javaformat-eclipse-update-site | jq -r '.children[] | .uri' | cut -c 2- | grep '[0-9].*' | sort -V ) | ||
|
||
repositories="" | ||
while read -r releasedVersion; do | ||
echo "Adding repository for ${releasedVersion}" | ||
repositories="${repositories}<repository><url>https://repo.spring.io/javaformat-eclipse-update-site/${releasedVersion}</url><layout>p2</layout></repository>" | ||
done <<< "${releasedVersions}" | ||
|
||
pushd git-repo > /dev/null | ||
sed "s|##repositories##|${repositories}|" ci/scripts/publish-eclipse-update-site-pom-template.xml > publish-eclipse-update-site-pom.xml | ||
run_maven -f publish-eclipse-update-site-pom.xml clean package || { echo "Failed to publish" >&2; exit 1; } | ||
|
||
curl \ | ||
-s \ | ||
--connect-timeout 240 \ | ||
--max-time 2700 \ | ||
-u ${ARTIFACTORY_USERNAME}:${ARTIFACTORY_PASSWORD} \ | ||
-f \ | ||
-X PUT \ | ||
-T "target/repository/content.jar" \ | ||
"https://repo.spring.io/javaformat-eclipse-update-site/" > /dev/null || { echo "Failed to publish" >&2; exit 1; } | ||
|
||
curl \ | ||
-s \ | ||
--connect-timeout 240 \ | ||
--max-time 2700 \ | ||
-u ${ARTIFACTORY_USERNAME}:${ARTIFACTORY_PASSWORD} \ | ||
-f \ | ||
-X PUT \ | ||
-T "target/repository/artifacts.jar" \ | ||
"https://repo.spring.io/javaformat-eclipse-update-site/" > /dev/null || { echo "Failed to publish" >&2; exit 1; } | ||
|
||
popd > /dev/null | ||
|
||
echo "Publish complete" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
name: 'Stage ' | ||
description: 'Stage Code' | ||
inputs: | ||
current-version: | ||
required: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"files": [ | ||
{ | ||
"aql": { | ||
"items.find": { | ||
"$and": [ | ||
{ | ||
"@build.name": "${buildName}", | ||
"@build.number": "${buildNumber}", | ||
"name": { | ||
"$nmatch": "*.zip" | ||
}, | ||
"name": { | ||
"$nmatch": "*.zip.asc" | ||
} | ||
} | ||
] | ||
} | ||
}, | ||
"target": "nexus/" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters