Skip to content

Commit

Permalink
Add flag to the connector graalvm-build and daily-build
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeshLK committed Dec 4, 2024
1 parent 55c62e4 commit ba0e915
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
echo -e '${{ toJson(secrets) }}' | jq -r 'to_entries[] | .key + "=" + .value' >> $GITHUB_ENV
- name: Build Package
run: ./gradlew build ${{ inputs.additional-build-flags }}
run: ./gradlew build ${{ inputs.additional-build-flags }} -PignoreVersionMismatch
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily-build-connector-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew build -x test ${{ inputs.additional-build-flags }} -PbuildUsingDocker=nightly
./gradlew build -x test ${{ inputs.additional-build-flags }} -PignoreVersionMismatch
- name: Test the Package
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew test ${{ inputs.additional-test-flags }} -PbuildUsingDocker=nightly
./gradlew test ${{ inputs.additional-test-flags }} -PignoreVersionMismatch
# Send notification when build fails
- name: Notify failure
Expand Down

0 comments on commit ba0e915

Please sign in to comment.