Fix CI and release guide.

This commit is contained in:
Wu Sheng 2018-08-31 22:57:19 +08:00
parent fff7401283
commit 6d74e7829c
5 changed files with 16 additions and 22 deletions

View File

@ -39,6 +39,14 @@ for different scenarios. For better understanding, read our documents.
# Document
- [Documents in English](docs/README.md)
```
5.x is still supported by SkyWalking community, and the agent-backend protocol is compatible with 6.x.
You can go to 5.x branch. At there, you have everything you need.
```
- Go to [5.x pages](https://github.com/apache/incubator-skywalking/tree/5.x)
# Downloads
Please head to the [releases page](ttp://skywalking.apache.org/downloads/) to download a release of Apache SkyWalking.

View File

@ -26,8 +26,3 @@ Or better yet, submit your own contributions through pull request to help make t
### 5.x releases
5.x is still supported by SkyWalking community, and the agent-backend protocol is compatible with 6.x.
You can go to [5.x branch](https://github.com/apache/incubator-skywalking/tree/5.x).
At there, you have everything you need.

View File

@ -43,7 +43,7 @@ Use the following block as a template and place it in ~/.m2/settings.xml
```
./mvnw release:perform -DskipTests -Ptravis-ci-submodule
```
1. Set version number as x.y.z, and tag as x.y.z-RCx. `x` in `RCx` is based the number of attempts release, aka `RELEASE_ROUND` in this doc, and starts with 1.
1. Set version number as x.y.z, and tag as vx.y.z
1. The release will automatically be inserted into a temporary staging repository for you.
## Build and sign the source code package
@ -71,7 +71,7 @@ with .asc, .sha512, .md5
## Upload to Apache svn
1. Use ApacheId to login `https://dist.apache.org/repos/dist/dev/incubator/skywalking/`
1. Create folder, named by release version and round, such as: x.y.z-RCx
1. Create folder, named by release version and round, such as: x.y.z
1. Upload Source code package to the folder with .asc, .sha512
* Package name: apache-skywalking-incubating-x.y.z-src.tar.gz
* See Section "Build and sign the source code package" for more details
@ -112,7 +112,7 @@ Maven 2 staging repository:
Release Tag :
* (Git Tag) x.y.z-RCx
* (Git Tag) x.y.z
Release CommitID :
@ -165,7 +165,7 @@ Maven 2 staging repository:
Release Tag :
* (Git Tag) x.y.z-RCx
* (Git Tag) x.y.z
Release CommitID :
@ -247,7 +247,7 @@ Maven 2 staging repository:
Release Tag :
* (Git Tag) x.y.z-RCx
* (Git Tag) x.y.z
Release CommitID :
@ -297,7 +297,7 @@ I will process to publish the release and send ANNOUNCE.
1. Move source codes tar balls and distributions to `https://dist.apache.org/repos/dist/release/incubator/skywalking/`.
```
> export SVN_EDITOR=vim
> svn mv https://dist.apache.org/repos/dist/dev/incubator/skywalking/x.y.z-RCx https://dist.apache.org/repos/dist/release/incubator/skywalking
> svn mv https://dist.apache.org/repos/dist/dev/incubator/skywalking/x.y.z https://dist.apache.org/repos/dist/release/incubator/skywalking
....
enter your apache password
....
@ -306,7 +306,6 @@ enter your apache password
2. Do release in nexus staging repo.
3. Public download URLs under `http://www.apache.org/dyn/closer.cgi/incubator/skywalking/x.y.z`.
4. Public KEYS, sigs and sha512 URLs under `https://www.apache.org/dist/incubator/skywalking/xxxx`
5. Re-tag on GitHub, tag `x.y.z-RCx` as `x.y.z`, and publish a GitHub release based on this tag.
5. Send ANNOUNCE mail to `general@incubator.apache.org` and `dev@skywalking.apache.org`.
```
Mail title: [ANNOUNCE] Release Apache SkyWalking (incubating) version x.y.z

View File

@ -81,7 +81,7 @@ public class AlarmCoreTest {
Assert.assertTrue(checkTimePoints(checkTime));
break;
}
if(i == 9){
if (i == 9) {
Assert.assertTrue(false);
}
}

View File

@ -20,13 +20,11 @@
# This script relies on few environment variables to determine source code package
# behavior, those variables are:
# RELEASE_VERSION -- The version of this source package.
# RELEASE_ROUND -- The round of this version release.
# For example: RELEASE_VERSION=5.0.0-alpha
# RELEASE_ROUND=1
RELEASE_VERSION=${RELEASE_VERSION}
TAG_NAME=v${RELEASE_VERSION}-RC${RELEASE_ROUND}
TAG_NAME=v${RELEASE_VERSION}
PRODUCT_NAME="apache-skywalking-apm-incubating"
echo "Release version "${RELEASE_VERSION}
@ -38,12 +36,6 @@ if [ "$RELEASE_VERSION" == "" ]; then
exit 1
fi
if [ "$RELEASE_ROUND" == "" ]; then
echo "RELEASE_ROUND environment variable not found, Please setting the RELEASE_ROUND."
echo "For example: export RELEASE_ROUND=1"
exit 1
fi
echo "Creating source package"
PRODUCT_NAME=${PRODUCT_NAME}-${RELEASE_VERSION}