chore(deps): bump org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.13 to 1.7.0 #87
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
app_version: ${{steps.get-app-version.outputs.APP_VERSION}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- id: get-app-version | |
name: Get archetype version | |
run: echo "APP_VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)" >> $GITHUB_OUTPUT | |
- name: Build and test archetype | |
run: ./mvnw -B -ntp clean verify | |
- name: Upload archetype for tests | |
uses: actions/upload-artifact@v4 | |
with: | |
name: latest-snapshot | |
path: target/bonita-connector-archetype-* | |
- name: Upload archetype pom for tests | |
uses: actions/upload-artifact@v4 | |
with: | |
name: latest-snapshot-pom | |
path: pom.xml | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-22.04, macos-12, windows-2022] | |
language: [java, kotlin, groovy] | |
runs-on: ${{ matrix.platform }} | |
needs: build | |
steps: | |
- name: Install Java and Maven | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Download latest archetype snapshot | |
uses: actions/download-artifact@v4 | |
with: | |
name: latest-snapshot | |
- name: Download archetype pom | |
uses: actions/download-artifact@v4 | |
with: | |
name: latest-snapshot-pom | |
- name: Display structure of downloaded files | |
run: ls -R | |
- name: Install latest archetype in local repo | |
shell: bash | |
run: mvn -B -ntp install:install-file -Dfile=bonita-connector-archetype-${{needs.build.outputs.app_version}}.jar -DpomFile=pom.xml && rm pom.xml | |
- name: Generate project and build it | |
shell: bash | |
run: >- | |
mvn -B -ntp archetype:generate | |
-DarchetypeGroupId=org.bonitasoft.archetypes | |
-DarchetypeArtifactId=bonita-connector-archetype | |
-DarchetypeVersion=${{needs.build.outputs.app_version}} | |
-DgroupId=org.bonita.test.connector | |
-DartifactId=test-connector-${{ matrix.language }} | |
-Dversion=1.0.0-SNAPSHOT | |
-Dpackage=org.bonita.test.connector | |
-DbonitaVersion=7.10.0 | |
-DclassName=MyTestConnector | |
-Dlanguage=${{ matrix.language }} | |
- name: Build and test generated ${{ matrix.language }} project | |
shell: bash | |
run: mvn -B -ntp verify -f test-connector-${{ matrix.language }}/pom.xml |