Merge pull request #6 from NipunaMadhushan/master #4
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
env: | |
BALLERINA_DISTRIBUTION_VERSION: 2201.8.0-rc1 # Update this with the latest Ballerina version | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'ballerina-platform' | |
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: Ballerina Version | |
id: ballerina-version | |
run: | | |
BALLERINA_VERSION=$(cut -d '-' -f1 <<< "${{ env.BALLERINA_DISTRIBUTION_VERSION }}") | |
echo "::set-output name=version::$BALLERINA_VERSION" | |
- name: Install Ballerina | |
run: | | |
wget https://github.com/ballerina-platform/ballerina-distribution/releases/download/v${{ env.BALLERINA_DISTRIBUTION_VERSION }}/ballerina-${{ steps.ballerina-version.outputs.version }}-swan-lake-linux-x64.deb | |
sudo dpkg -i ballerina-*-linux-x64.deb | |
bal -v | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Set Docker Host env variable | |
run: echo "DOCKER_HOST=$(docker context ls --format '{{print .DockerEndpoint}}' | tr -d '\n')" >> $GITHUB_ENV | |
- name: Build with Gradle | |
env: | |
DOCKER_HOST: unix:///var/run/docker.sock | |
packageUser: ${{ secrets.BALLERINA_BOT_USERNAME }} | |
packagePAT: ${{ secrets.BALLERINA_BOT_TOKEN }} | |
packagePublishRepo: ${{ github.repository }} | |
run: | | |
./gradlew clean build publish --stacktrace --scan --console=plain --no-daemon | |
./gradlew codeCoverageReport --console=plain --no-daemon | |
- name: Upload Coverage Report | |
uses: codecov/codecov-action@v1 | |
with: | |
fail_ci_if_error: true | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: distribution | |
path: | | |
ballerina/build/distributions/zipkin-extension-ballerina-*.zip | |
if-no-files-found: error |