Bump the Dependencies for the Update 11 Release #1422
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: PR build | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- master | |
- "automated/dependency_version_update" | |
- "automated/dependency_version_update_tmp" | |
jobs: | |
ubuntu-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: 21.0.3 | |
- name: Build with Gradle | |
env: | |
packageUser: ${{ github.actor }} | |
packagePAT: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew build --scan --no-daemon | |
- name: Archive Error Log | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: Ballerina Internal Log | |
path: transaction-ballerina/ballerina-internal.log | |
if-no-files-found: ignore | |
- name: Generate Codecov Report | |
if: github.event_name == 'pull_request' | |
uses: codecov/codecov-action@v2 | |
windows-build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: 21.0.3 | |
- name: Build with Gradle | |
env: | |
packageUser: ${{ github.actor }} | |
packagePAT: ${{ secrets.GITHUB_TOKEN }} | |
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 | |
run: ./gradlew.bat build --scan --no-daemon |