-
Notifications
You must be signed in to change notification settings - Fork 30
35 lines (33 loc) · 853 Bytes
/
build.yml
File metadata and controls
35 lines (33 loc) · 853 Bytes
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
name: Gradle Build And Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup JDK
uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
cache: gradle
- name: Build with Gradle
run: ./gradlew --no-daemon build -Pjava8=true
- name: Upload Unit Test Results
if: ${{ always() }}
uses: actions/upload-artifact@v6
with:
name: Unit Tests
path: |
components/**/build/reports/tests/test/**
components/**/build-test-results/**
- name: Upload a Build Artifact
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.componentName }}-drop
path: ./**/build/*