-
Notifications
You must be signed in to change notification settings - Fork 5
69 lines (56 loc) · 1.75 KB
/
build-and-test.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
name: Build and Test
defaults:
run:
shell: bash
concurrency:
group: "${{ github.head_ref }}${{ github.ref }}"
cancel-in-progress: true
env:
JAVA_VERSION: 17
NODEJS_VERSION: 16.17.0
ATALA_GITHUB_ACTOR: ${{ secrets.GITHUB_TOKEN }}
ATALA_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
push:
branches:
- "main"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Install Java ${{ env.JAVA_VERSION }}
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: "zulu"
- name: Gradle Build Action
uses: gradle/gradle-build-action@v2
- name: Runner
run: echo ${{ runner.os }}
- name: Build for JS, Android, JVM
run: ./gradlew build allTests koverXmlReportRelease koverHtmlReportRelease --stacktrace
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
file: "${{ github.workspace }}/edge-agent-sdk/build/reports/android/result.xml"
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish test results
if: always()
uses: EnricoMi/publish-unit-test-result-action/composite@v2
with:
files: "${{ github.workspace }}/edge-agent-sdk/build/test-results/testReleaseUnitTest/TEST-*.xml"
comment_title: "Unit Test Results"
check_name: "Unit Test Results"
- name: Upload Tests Reports
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-results
path: |
edge-agent-sdk/build/reports/jvm
edge-agent-sdk/build/reports/android
if-no-files-found: error