Build #103
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
# This workflow will build a Java project with Gradle | |
name: Build | |
on: | |
schedule: | |
- cron: '40 5 * * SAT' | |
push: | |
branches: [ master ] | |
tags-ignore: | |
- 'v*' | |
jobs: | |
build: | |
name: ποΈ Build and Test | |
runs-on: ubuntu-latest | |
outputs: | |
next-version: ${{ steps.version.outputs.next-version }} | |
steps: | |
- name: Build trigger event π | |
run: | | |
echo "event name - ${{github.event_name}}" | |
echo "github.ref - ${{github.ref}}" | |
- name: Checkout repository βοΈ | |
uses: actions/checkout@v3 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Set up JDK 11 βοΈ | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Setup Gradle dependencies cache βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} | |
- name: Setup Gradle wrapper cache βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
- name: Validate Gradle wrapper βοΈ | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Grant execute permission for gradlew βοΈ | |
run: chmod +x gradlew | |
- name: Build and test ποΈ | |
run: ./gradlew clean build jacocoTestReport javadoc | |
- name: Get version number π’ | |
id: get-version | |
uses: release-drafter/release-drafter@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Store next version π’ | |
id: version | |
run: | | |
echo "next-version=${{ steps.get-version.outputs.tag_name }}" | cut -c -13,15- >> $GITHUB_OUTPUT | |
- name: Print next version π’ | |
run: | | |
echo "Next version: ${{ steps.version.outputs.next-version }}" | |
code-analysis: | |
name: π Code Analysis | |
needs: [build] | |
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' && github.event_name != 'schedule' && github.repository == 'w3stling/mic' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository βοΈ | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 βοΈ | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Cache SonarCloud packages βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
- name: Setup Gradle dependencies cache βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} | |
- name: Setup Gradle wrapper cache βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
- name: Validate Gradle wrapper βοΈ | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Grant execute permission for gradlew βοΈ | |
run: chmod +x gradlew | |
- name: Next version π’ | |
run: | | |
echo "Next version: ${{ needs.build.outputs.next-version }}" | |
- name: Analyze code ποΈ | |
run: ./gradlew test jacocoTestReport sonarqube --info -Dsonar.projectVersion=${{ needs.build.outputs.next-version }}-SNAPSHOT | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
documentation: | |
name: π Publish Javadoc | |
needs: [build] | |
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' && github.event_name != 'schedule' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository βοΈ | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 βοΈ | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Setup Gradle dependencies cache βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} | |
- name: Setup Gradle wrapper cache βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
- name: Validate Gradle wrapper βοΈ | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Grant execute permission for gradlew βοΈ | |
run: chmod +x gradlew | |
- name: Next version π’ | |
run: | | |
echo "Next version: ${{ needs.build.outputs.next-version }}" | |
- name: Generate Javadoc π | |
run: ./gradlew javadoc | |
- name: Deploy Javadoc π | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: build/docs/javadoc | |
target-folder: javadoc/${{ needs.build.outputs.next-version }}-SNAPSHOT | |
commit-message: Publishing javadoc | |
clean: true | |
dry-run: false | |
publish-snapshot: | |
name: π Publish Snapshot | |
needs: [build] | |
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' && github.event_name != 'schedule' && github.repository == 'w3stling/mic' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository βοΈ | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 βοΈ | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Setup Gradle dependencies cache βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} | |
- name: Setup Gradle wrapper cache βοΈ | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
- name: Validate Gradle wrapper βοΈ | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Grant execute permission for gradlew βοΈ | |
run: chmod +x gradlew | |
- name: Next version π’ | |
run: | | |
echo "Next version: ${{ needs.build.outputs.next-version }}" | |
- name: Publish snapshot build π | |
env: | |
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }} | |
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }} | |
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.PGP_SECRET }} | |
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.PGP_PASSPHRASE }} | |
run: ./gradlew publishToSonatype -Pversion=${{ needs.build.outputs.next-version }}-SNAPSHOT |