Skip to content

Commit

Permalink
Migrate PR build workflow to a centralized workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dinukaamarasinghe817 committed Mar 1, 2024
1 parent 9a818a3 commit 6cedb60
Showing 1 changed file with 12 additions and 47 deletions.
59 changes: 12 additions & 47 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,50 +1,15 @@
name: PR build
name: PR Build

on:
pull_request:
branches:
- main
- 2201.[0-9]+.x
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true

jobs:
ubuntu-build:
name: Build on Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 17.0.7
- name: Give execute permission to gradlew
run: chmod +x ./gradlew
- name: Build with Gradle
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }}
run: ./gradlew build
- name: Generate Codecov Report
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
on: pull_request

windows-build:
name: Build on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 17.0.7
- name: Build with Gradle
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew.bat build -x test
# Disabling tests because no docker in git-action windows
jobs:
call_workflow:
name: Run PR Build Workflow
if: ${{ github.repository_owner == 'ballerina-platform' }}
uses: ballerina-platform/ballerina-library/.github/workflows/pull-request-build-template.yml@main
with:
additional-windows-test-flags: "-x test"

0 comments on commit 6cedb60

Please sign in to comment.