Release #86
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
# | |
# Copyright 2022 The original authors | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
name: Release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "Release version" | |
required: true | |
next: | |
description: "Next version" | |
required: false | |
jobs: | |
version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Set up Java' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '21' | |
- name: 'Cache Maven packages' | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }} | |
- name: 'Set release version' | |
id: version | |
run: | | |
echo ${{ github.event.inputs.version }} | |
RELEASE_VERSION=${{ github.event.inputs.version }} | |
NEXT_VERSION=${{ github.event.inputs.next }} | |
PLAIN_VERSION=`echo ${RELEASE_VERSION} | awk 'match($0, /^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)/) { print substr($0, RSTART, RLENGTH); }'` | |
COMPUTED_NEXT_VERSION="${PLAIN_VERSION}-SNAPSHOT" | |
if [ -z $NEXT_VERSION ] | |
then | |
NEXT_VERSION=$COMPUTED_NEXT_VERSION | |
fi | |
mvn -B versions:set versions:commit -DnewVersion=$RELEASE_VERSION | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "GitHub Action" | |
git commit -a -m "🏁 Releasing version $RELEASE_VERSION" | |
git push | |
echo "removed: origin HEAD:main" | |
git rev-parse HEAD > HEAD | |
echo $RELEASE_VERSION > RELEASE_VERSION | |
echo $PLAIN_VERSION > PLAIN_VERSION | |
echo $NEXT_VERSION > NEXT_VERSION | |
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: 'Upload version files' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: | | |
HEAD | |
*_VERSION | |
create_binaries: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Set up JDK' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 21 | |
- name: 'Prepare branch name' | |
run: > | |
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: 'Checkout relevant branch' | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.refName }} | |
- name: 'Cache Maven packages' | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }} | |
- name: 'Make mvnw executable' | |
run: | | |
chmod +x mvnw | |
chmod +x mvnw.cmd | |
- name: 'Create distribution' | |
run: > | |
./mvnw --no-transfer-progress -DskipTests -pl iot.technology:toolkit-app -am package | |
- name: 'Upload build artifact' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-jvm | |
path: toolkit-app/target/*.zip | |
# Build native executable per runner | |
build: | |
needs: [ version ] | |
name: 'Build with Graal on ${{ matrix.os }}' | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ ubuntu-latest, macOS-latest, windows-latest ] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 90 | |
steps: | |
- name: 'Prepare git' | |
run: git config --global core.autocrlf false | |
- name: 'Prepare branch name' | |
run: > | |
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: 'Checkout relevant branch' | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.refName }} | |
- name: Install upx in Linux | |
run: sudo apt-get install upx | |
if: ${{ runner.os == 'Linux' }} | |
- name: Install upx in macOS | |
run: brew install upx | |
if: ${{ runner.os == 'macOS' }} | |
- name: Install upx in Windows | |
run: choco install upx | |
if: ${{ runner.os == 'Windows' }} | |
- name: 'Set up Graal' | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
distribution: 'graalvm-community' | |
java-version: '21' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'Cache Maven packages' | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
- name: 'Make mvnw executable' | |
run: | | |
chmod +x mvnw | |
chmod +x mvnw.cmd | |
- name: 'Create distribution' | |
run: > | |
./mvnw --no-transfer-progress -Pnative -DskipTests -pl iot.technology:toolkit-app package -am | |
- name: 'Smoke test' | |
run: > | |
./toolkit-app/target/toolkit -V | |
- name: 'Upload build artifact' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-${{ matrix.os }} | |
path: | | |
toolkit-app/target/toolkit-app*.zip | |
!toolkit-app/target/toolkit-app-${{ env.refName }}.jar | |
# Collect all executables and release | |
release: | |
needs: [ build ] | |
runs-on: windows-latest | |
steps: | |
- name: 'Prepare branch name' | |
run: > | |
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: 'Checkout relevant branch' | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.refName }} | |
fetch-depth: 0 | |
- name: 'Download all build artifacts' | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: artifacts-* | |
path: all-artifacts | |
- name: 'Merge all artifacts' | |
run: | | |
mkdir merged-artifact | |
for /d %%D in (all-artifacts\*) do ( | |
xcopy /E /I "%%D" merged-artifact\ | |
) | |
- name: Upload merged artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-artifact # 合并后的工件名称 | |
path: merged-artifact\ | |
- name: 'Restore Maven packages' | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: 'Make mvnw executable' | |
run: | | |
chmod +x mvnw | |
chmod +x mvnw.cmd | |
- name: 'Release with JReleaser' | |
shell: bash | |
env: | |
JRELEASER_BRANCH: main | |
JRELEASER_UPDATE: true | |
JRELEASER_OVERWRITE: true | |
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
JRELEASER_CHOCOLATEY_API_KEY: ${{ secrets.JRELEASER_CHOCOLATEY_API_KEY }} | |
JRELEASER_CHOCOLATEY_GITHUB_TOKEN: ${{ secrets.JRELEASER_CHOCOLATEY_GITHUB_TOKEN }} | |
run: ./mvnw --no-transfer-progress -Prelease -pl :iot-toolkit -DartifactsDir=release-artifact jreleaser:full-release | |
- name: JReleaser output | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jreleaser-logs | |
path: | | |
target/jreleaser/trace.log | |
target/jreleaser/output.properties |