-
Notifications
You must be signed in to change notification settings - Fork 5
93 lines (90 loc) · 2.76 KB
/
build-on-pr.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
name: Build PR
on:
pull_request:
types: [ opened, synchronize ]
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Run tests
uses: gradle/gradle-build-action@v3
with:
arguments: |
--stacktrace
check jacocoTestReport
- name: Test publishing
uses: gradle/gradle-build-action@v3
with:
arguments: |
--stacktrace
publishToMavenLocal
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: always() # always run even if the previous step fails
with:
check_name: JUnit Test Report
report_paths: '**/build/test-results/**/TEST-*.xml'
annotate_notice: false
- name: Coverage Report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
publish-snapshot:
name: Publish snapshot
needs: build
runs-on: ubuntu-latest
environment: snapshot
continue-on-error: true
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Publish plugin
uses: gradle/gradle-build-action@v3
with:
arguments: |
-Pversion=SNAPSHOT-${{ github.sha }}
assemble publishAllPublicationsToSnapshotRepository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Snapshot coordinates comment
uses: thollander/actions-comment-pull-request@v2
with:
message: |
To use the snapshot version of the plugin add this to `settings.gradle.kts`:
```kotlin
pluginManagement {
repositories {
maven {
name = "JooqDockerPluginSnapshotRepo"
url = uri("https://maven.pkg.github.com/monosoul/jooq-gradle-plugin/")
credentials {
username = "<your GitHub username>"
password = "<your GitHub access token with read:packages scope>"
}
}
gradlePluginPortal()
}
}
```
And this to `build.gradle.kts`:
```kotlin
plugins {
id("dev.monosoul.jooq-docker") version "SNAPSHOT-${{ github.sha }}"
}
```