Update build.gradle #142
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
name: MigTool continuous build | |
# read more here | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions#on | |
on: | |
push: | |
branches: | |
- '*' | |
- '!refs/tags/.*' | |
tags-ignore: | |
- '*' | |
jobs: | |
build: | |
name: Migtool build | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
runs-on: ubuntu-latest | |
timeout-minutes: 90 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Environment | |
run: env | sort | |
- name: Checkout | |
uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Setup Graalvm | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '17.0.8' | |
distribution: 'graalvm' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install native-image component | |
run: gu install native-image | |
- name: Tests | |
run: ./gradlew check | |
- name: Tests reports | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: linux-test-reports | |
path: build/reports/tests/test/ | |
- name: Build Native Image | |
run: ./gradlew nativeCompile | |
- name: Upload linux native image artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: migtool_linux | |
path: build/native/nativeCompile/migtool | |
- name: Tests native | |
run: ./gradlew cleanTest check | |
env: | |
NATIVE_BINARY_PATH: build/native/nativeCompile/migtool | |
release: | |
name: Release | |
if: "contains(github.event.head_commit.message, '[release]') && github.event.ref=='refs/heads/master'" | |
needs: [ build ] | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # Required to authenticate to AWS using assume-role | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Download all build artifacts | |
uses: actions/download-artifact@v2 | |
- name: Setup Java for JReleaser | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Version | |
id: version | |
run: | | |
VERSION=$(cat ./VERSION) | |
echo "VERSION = $VERSION" | |
echo "::set-output name=VERSION::$VERSION" | |
- name: Run JReleaser | |
uses: jreleaser/release-action@v2 | |
env: | |
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
JRELEASER_PROJECT_VERSION: ${{ steps.version.outputs.VERSION }} | |
- name: Configure AWS | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: eu-west-2 | |
role-to-assume: arn:aws:iam::128997144437:role/Development | |
- name: Publish STABLE jars | |
run: ./gradlew publish | |