-
Notifications
You must be signed in to change notification settings - Fork 24
54 lines (52 loc) · 1.71 KB
/
build-main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Build
on:
workflow_dispatch:
push:
branches:
- main
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: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Generating Artifacts for Scanning
run: ./gradlew build -x check -x test
env:
packageUser: ${{ secrets.BALLERINA_BOT_USERNAME }}
packagePAT: ${{ secrets.BALLERINA_BOT_TOKEN }}
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
scan-ref: '/github/workspace/choreo-extension-ballerina/lib'
format: 'table'
timeout: '6m0s'
exit-code: '1'
- name: Build with Gradle
env:
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@v4
with:
fail_ci_if_error: true
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: distribution
path: |
choreo-extension-ballerina/build/distributions/choreo-extension-ballerina-*.zip
if-no-files-found: error