Update Actions to v4 #97
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 Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Maven Build | |
on: | |
push: | |
paths-ignore: | |
- neoemf-doc | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-bundles: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 22 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '22' | |
distribution: 'temurin' | |
cache: maven | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Analyze with SonarCloud | |
run: ./mvnw -B jacoco:prepare-agent package jacoco:report jacoco:report-aggregate sonar:sonar -Dsonar.projectKey=org.atlanmod.neoemf:neoemf -Dsonar.organization=atlanmod -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN -Dsonar.coverage.jacoco.xmlReportPaths=./target/site/jacoco-aggregate/jacoco.xml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: Build and install main project | |
run: ./mvnw clean install -DskipTests | |
- name: Build benchmarks | |
run: ./mvnw clean package -f benchmarks/pom.xml | |
build-plugins: | |
runs-on: ubuntu-latest | |
needs: build-bundles | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 22 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '22' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build plugins with Tycho | |
run: ./mvnw -B -f plugins/eclipse install | |
deploy-bundles: | |
runs-on: ubuntu-latest | |
needs: build-bundles | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 2 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '22' | |
distribution: 'temurin' | |
cache: maven | |
- name: Install GPG key | |
run: | | |
cat <(echo -e "${{ secrets.GPG_PRIVATE_KEY }}") | gpg --batch --import | |
gpg --list-secret-keys --keyid-format LONG | |
- name: Initialize variables | |
id: init | |
run: | | |
VERSION=$(./mvnw -B help:evaluate -Dexpression='project.version' $@ | grep -v '\[' | tail -1) | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
echo "$VERSION" | |
- name: Publish Snapshot to Central | |
env: | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
if: contains(env.VERSION, 'SNAPSHOT' ) | |
run: | | |
./mvnw \ | |
--no-transfer-progress \ | |
--batch-mode \ | |
clean install deploy \ | |
--settings .util/settings.xml \ | |
-DskipTests | |
- name: Publish release to Central | |
env: | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
if: ${{ !contains(env.VERSION, 'SNAPSHOT' ) }} | |
run: | | |
./mvnw \ | |
--no-transfer-progress \ | |
--batch-mode \ | |
clean package javadoc:jar source:jar-no-fork gpg:sign install deploy \ | |
--settings .util/settings.xml \ | |
-DskipTests \ | |
-Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} \ | |
-P deploy-artifacts | |
# mvn clean package javadoc:jar source:jar-no-fork gpg:sign install deploy -DskipTests | |
#-s .util/settings.xml -DskipTests clean package javadoc:jar source:jar-no-fork gpg:sign install deploy | |
# | |