-
Notifications
You must be signed in to change notification settings - Fork 1
109 lines (89 loc) · 2.34 KB
/
gradle-no-native.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Gradle Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
build:
name: Build and CodeQL Analysis
runs-on: ubuntu-latest
if:
${{ !startsWith(github.event.head_commit.message, 'build: Set version to') }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
- name: Grant permissions
run: chmod +x gradlew
- name: Build
run: ./gradlew assemble -x test
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
unit-tests:
name: Unit Tests
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Run Unit Tests
run: ./gradlew test
- name: Upload Unit Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: unit_test_results
path: |
build/test-results/test/*.xml
integration-tests:
name: Integration Tests
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Run Integration Tests
run: ./gradlew -x test quarkusIntTest
- name: Upload Integration Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: integration_test_results
path: |
build/test-results/quarkusIntTest/*.xml
event_file:
name: "Event File"
needs: build
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v3
with:
name: event_file
path: ${{ github.event_path }}