Update Ballerina.toml #104
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: Build Dev Branches | |
on: | |
workflow_dispatch: | |
inputs: | |
ballerina_version: | |
description: 'Ballerina version' | |
required: true | |
default: '2201.10.0' | |
push: | |
branches-ignore: | |
- main | |
- "automated/dependency_version_update" | |
- "automated/dependency_version_update_tmp" | |
env: | |
BALLERINA_DISTRIBUTION_VERSION: 2201.10.0 # Update this with the latest Ballerina version | |
jobs: | |
ubuntu-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: 17.0.7 | |
- name: Set up Ballerina | |
if: github.event_name == 'workflow_dispatch' | |
uses: ballerina-platform/[email protected] | |
with: | |
version: ${{ github.event.inputs.ballerina_version }} | |
- name: Set up Ballerina | |
if: github.event_name == 'push' | |
uses: ballerina-platform/[email protected] | |
with: | |
version: ${{ env.BALLERINA_DISTRIBUTION_VERSION }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
env: | |
packageUser: ${{ github.actor }} | |
packagePAT: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
./gradlew clean build --stacktrace --scan --console=plain --no-daemon | |
./gradlew codeCoverageReport --console=plain --no-daemon | |
- name: Upload Coverage Report | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ballerina-tests/jaeger-server-tests/target/report/jaeger_server_tests/coverage-report.xml | |
windows-build: | |
if: false # because there is no opentelemetry-jaeger-executable available | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: adopt | |
java-version: 17.0.7 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Download Jaeger server executable | |
env: | |
JAEGER_VERSION: 1.21.0 | |
run: | | |
Invoke-WebRequest https://github.com/jaegertracing/jaeger/releases/download/v$env:JAEGER_VERSION/jaeger-$env:JAEGER_VERSION-windows-amd64.tar.gz -O jaeger.tar.gz | |
tar -xzvf jaeger.tar.gz | |
mv jaeger-$env:JAEGER_VERSION-windows-amd64 jaeger | |
echo "JAEGER_SERVER_EXECUTABLE=$(Resolve-Path jaeger\jaeger-all-in-one.exe)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
- name: Build with Gradle | |
env: | |
packageUser: ${{ github.actor }} | |
packagePAT: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew.bat clean build --stacktrace --scan --console=plain --no-daemon |