-
Notifications
You must be signed in to change notification settings - Fork 1
74 lines (61 loc) · 2.03 KB
/
Copy pathtest-plugin.yml
File metadata and controls
74 lines (61 loc) · 2.03 KB
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
name: 'Test Plugin'
on:
pull_request:
push:
branches:
- main
permissions:
checks: write
jobs:
localPluginTest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Cache Gradle
uses: actions/cache@v5
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-caches-v0-${{ hashFiles('build.gradle.kts', 'settings.gradle.kts', 'gradle/wrapper/gradle-wrapper.properties', 'gradle/libs.versions.tml') }}
- name: Setup JDK 17
uses: actions/setup-java@v5
with:
distribution: 'adopt'
java-version: '17'
- name: Run 'normal' tests
run: ./gradlew test --tests 'SentryProguardGradlePluginTest' --tests '*.tasks.*'
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
if: success() || failure()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
check_name: 'Unit Test Reports'
publishingConsumingPluginTest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Cache Gradle
uses: actions/cache@v5
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-caches-v0-${{ hashFiles('build.gradle.kts', 'settings.gradle.kts', 'gradle/wrapper/gradle-wrapper.properties', 'gradle/libs.versions.tml') }}
- name: Setup JDK 17
uses: actions/setup-java@v5
with:
distribution: 'adopt'
java-version: '17'
- name: Publish Plugin to mavenLocal
run: ./gradlew publishToMavenLocal
- name: Run publishing/consuming tests
run: ./gradlew test --tests 'SentryProguardGradlePluginPublishingTest'
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
if: success() || failure()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
check_name: 'Publishing Test Reports'