joewitt commented on PR #38:
URL: https://github.com/apache/nifi-maven/pull/38#issuecomment-2123061948

   For the github ci change here is a form that should help
   
   `name: build
   
   on: [push, pull_request]
   
   env:
     MAVEN_COMMAND: ./mvnw
     MAVEN_COMPILE_COMMAND: >-
       verify
       --batch-mode
       --update-snapshots
       --show-version
       --no-snapshot-updates
       --no-transfer-progress
       --fail-fast
   
   concurrency:
     group: ${{ github.workflow }}-${{ github.ref }}
     cancel-in-progress: true
   
   permissions:
     security-events: write
     contents: read
     pull-requests: read
   
   jobs:
     build:
       runs-on: ubuntu-latest
       name: Ubuntu Correto JDK 21 EN
       steps:
         - name: Checkout Code
           uses: actions/checkout@v4
         - name: Set up Java 21
           uses: actions/setup-java@v4
           with:
             distribution: 'corretto'
             java-version: '21'
             cache: 'maven'
         - name: Build
           run: >
             ${{ env.MAVEN_COMMAND }}
             ${{ env.MAVEN_COMPILE_COMMAND }}
   `


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to