This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
Update the protobuf-java
dependency
#867
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: Ballerina STAN module build | |
on: pull_request | |
jobs: | |
ubuntu-build: | |
name: Build on Ubuntu | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
concurrency: | |
group: ${{ github.head_ref }}-ubuntu | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- name: Build with Gradle | |
env: | |
packageUser: ${{ github.actor }} | |
packagePAT: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew build --scan | |
- name: Archive Code Coverage JSON | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Code Coverage JSON | |
path: stan-ballerina/target/report/test_results.json | |
if-no-files-found: ignore | |
- name: Generate CodeCov Report | |
if: github.event_name == 'pull_request' | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
windows-build: | |
name: Build on Windows | |
runs-on: windows-latest | |
timeout-minutes: 60 | |
concurrency: | |
group: ${{ github.head_ref }}-windows | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- name: Build with Gradle | |
env: | |
packageUser: ${{ github.actor }} | |
packagePAT: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew.bat build -x test |