Release #71
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 | |
env: | |
graalvm_version: '22.2.0' | |
java_version: '11' | |
jobs: | |
version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 'Set up Java' | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'microsoft' | |
- name: 'Cache Maven packages' | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- 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 | |
- name: 'Upload version files' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: artifacts | |
path: | | |
HEAD | |
*_VERSION | |
# Build native executable per runner | |
build: | |
needs: [ version ] | |
name: 'Build with Graal on ${{ matrix.os }}' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macOS-latest, windows-latest ] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 90 | |
steps: | |
- name: 'Download all build artifacts' | |
uses: actions/download-artifact@v2 | |
- name: 'Read HEAD ref' | |
id: head | |
uses: juliangruber/read-file-action@v1 | |
with: | |
path: artifacts/HEAD | |
- name: 'Check out repository' | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ steps.head.outputs.content }} | |
- 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 GraalVM (Java ${{ env.java_version }}) | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
version: '${{ env.graalvm_version }}' | |
java-version: '${{ env.java_version }}' | |
components: 'native-image' | |
- name: echo graalvm info | |
run: | | |
echo "GRAALVM_HOME: $GRAALVM_HOME" | |
echo "JAVA_HOME: $JAVA_HOME" | |
java --version | |
- name: 'Cache Maven packages' | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: 'Create distribution' | |
run: mvn -B --file pom.xml -Pnative -DskipTests -pl iot.technology:toolkit-app package -am | |
- name: 'Upload build artifact' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: artifacts | |
path: toolkit-app/target/*.zip | |
# Collect all executables and release | |
release: | |
needs: [ build ] | |
runs-on: windows-latest | |
steps: | |
# must read HEAD before checkout | |
- name: 'Download all build artifacts' | |
uses: actions/download-artifact@v2 | |
- name: 'Read HEAD ref' | |
id: head | |
uses: juliangruber/read-file-action@v1 | |
with: | |
path: artifacts/HEAD | |
- name: 'Read versions' | |
shell: bash | |
id: version | |
run: | | |
RELEASE_VERSION=`cat artifacts/RELEASE_VERSION` | |
PLAIN_VERSION=`cat artifacts/PLAIN_VERSION` | |
NEXT_VERSION=`cat artifacts/NEXT_VERSION` | |
echo "RELEASE_VERSION = $RELEASE_VERSION" | |
echo "PLAIN_VERSION = $PLAIN_VERSION" | |
echo "NEXT_VERSION = $NEXT_VERSION" | |
echo "::set-output name=RELEASE_VERSION::$RELEASE_VERSION" | |
echo "::set-output name=PLAIN_VERSION::$PLAIN_VERSION" | |
echo "::set-output name=NEXT_VERSION::$NEXT_VERSION" | |
- name: 'Check out repository' | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ steps.head.outputs.content }} | |
fetch-depth: 0 | |
# checkout will clobber downloaded artifacts | |
# we have to download them again | |
- name: 'Download all build artifacts' | |
uses: actions/download-artifact@v2 | |
- name: 'Set up Java' | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'microsoft' | |
- name: 'Cache Maven packages' | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: 'Release with JReleaser' | |
shell: bash | |
env: | |
JRELEASER_BRANCH: main | |
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
JRELEASER_OVERWRITE: true | |
JRELEASER_UPDATE: true | |
JRELEASER_CHOCOLATEY_API_KEY: ${{ secrets.JRELEASER_CHOCOLATEY_API_KEY }} | |
JRELEASER_CHOCOLATEY_GITHUB_TOKEN: ${{ secrets.JRELEASER_CHOCOLATEY_GITHUB_TOKEN }} | |
run: mvn -e -B --file pom.xml -Prelease -DartifactsDir=artifacts jreleaser:full-release | |
- name: JReleaser output | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: jreleaser-logs | |
path: | | |
target/jreleaser/trace.log | |
target/jreleaser/output.properties |