Skip to content

Commit

Permalink
Merge pull request #7439 from ayeshLK/workflow-10.x-dev
Browse files Browse the repository at this point in the history
Add  `ignoreVersionMismatch` flag to the connector graalvm-build and daily-build
  • Loading branch information
ayeshLK authored Dec 6, 2024
2 parents f077181 + ba0e915 commit 14ca7fb
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 14ca7fb

Please sign in to comment.