File tree 5 files changed +92
-32
lines changed
5 files changed +92
-32
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,22 @@ jobs:
34
34
uses : gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
35
35
36
36
- name : Build with Gradle
37
- run : ./gradlew :lib-core: build
37
+ run : ./gradlew build -x test
38
38
39
39
# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
40
40
# the publishing section of your build.gradle
41
- - name : Publish to GitHub Packages and Maven Central
41
+ - name : Publish to GitHub Packages and Stage all artifacts to a local directory (for jreleaser)
42
42
run : ./gradlew :lib-core:publish
43
43
env :
44
44
GITHUB_TOKEN : ${{ secrets.TOKEN }}
45
- MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
46
- MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
45
+
46
+ # For Jreleaser
47
+ - name : Publish to Maven Central
48
+ run : ./gradlew jreleaserFullRelease --stacktrace
49
+ env :
50
+ JRELEASER_MAVENCENTRAL_USERNAME : ${{ secrets.JRELEASER_MAVENCENTRAL_USERNAME }}
51
+ JRELEASER_MAVENCENTRAL_TOKEN : ${{ secrets.JRELEASER_MAVENCENTRAL_TOKEN }}
52
+ JRELEASER_GPG_PASSPHRASE : ${{ secrets.JRELEASER_GPG_PASSPHRASE }}
53
+ JRELEASER_GPG_SECRET_KEY : ${{ secrets.JRELEASER_GPG_SECRET_KEY }}
54
+ JRELEASER_GPG_PUBLIC_KEY : ${{ secrets.JRELEASER_GPG_PUBLIC_KEY }}
55
+ JRELEASER_GITHUB_TOKEN : ${{ secrets.TOKEN }}
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ Developed a high-performance ring buffer leveraging `lock-free` and low-level `u
6
6
7
7
[ Cafe RingBuffer Javadoc] ( https://gc-garcol.github.io/cafe-ringbuffer/index-all.html )
8
8
9
- | Benchmark | Results |
10
- | ----------------------------------------------------------------------------------| --------------------------------------------------------------|
11
- | ` Unicast ` -` 1P – 1C ` throughput: 11,200 messages. Avg-latency: 89.4 ns | <img src =" readme/benchmark_unicast_1p1c.png " width =" 100% " /> |
12
- | ` Three Step Pipeline ` -` 1P – 3C ` throughput: 7,800 messages. Avg-latency: 132.2 ns | <img src =" readme/benchmark_pipeline_1p3c.png " width =" 100% " /> |
9
+ | Benchmark | Results |
10
+ | ------------------------------------------------------------------------------------------------- | --------------------------------------------------------------|
11
+ | ` Unicast ` -` 1P – 1C ` < br > throughput: 11,200,000 messages/s. < br > Avg-latency: 89.4 ns | <img src =" readme/benchmark_unicast_1p1c.png " width =" 100% " /> |
12
+ | ` Three Step Pipeline ` -` 1P – 3C ` < br > throughput: 7,800,000 messages/s. < br > Avg-latency: 132.2 ns | <img src =" readme/benchmark_pipeline_1p3c.png " width =" 100% " /> |
13
13
## Features
14
14
15
15
- [X] ` OneToManyRingBuffer ` (also configurable for ` OneToOneRingBuffer ` usage)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ import org.jreleaser.model.Active
2
+
1
3
plugins {
2
- java
4
+ `java- library`
5
+ `maven- publish`
6
+ id(" org.jreleaser" ) version " 1.15.0"
7
+ }
8
+
9
+ group = " io.github.gc-garcol"
10
+ version = " 1.0.0"
11
+
12
+ java {
13
+ withJavadocJar()
14
+ withSourcesJar()
15
+ }
16
+
17
+ publishing {
18
+ publications {
19
+ create<MavenPublication >(" maven" ) {
20
+ groupId = " io.github.gc-garcol"
21
+ artifactId = " cafe-ringbuffer"
22
+
23
+ from(components[" java" ])
24
+
25
+ pom {
26
+ name.set(" cafe-ringbuffer" )
27
+ description.set(" cafe-ringbuffer" )
28
+ url.set(" https://gc-garcol.github.io/cafe-ringbuffer/gc/garcol/libcore/package-summary.html" )
29
+ inceptionYear.set(" 2024" )
30
+ licenses {
31
+ license {
32
+ name.set(" Apache-2.0" )
33
+ url.set(" https://spdx.org/licenses/Apache-2.0.html" )
34
+ }
35
+ }
36
+ developers {
37
+ developer {
38
+ id.set(" gc-garcol" )
39
+ name.set(" cafe" )
40
+ }
41
+ }
42
+ scm {
43
+ connection.set(" scm:git:https://github.com/gc-garcol/cafe-ringbuffer.git" )
44
+ developerConnection.set(" scm:git:ssh://github.com/gc-garcol/cafe-ringbuffer.git" )
45
+ url.set(" https://github.com/gc-garcol/cafe-ringbuffer/tree/main" )
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
51
+
52
+ jreleaser {
53
+ signing {
54
+ active = Active .ALWAYS
55
+ armored = true
56
+ }
57
+ deploy {
58
+ maven {
59
+ mavenCentral {
60
+ create(" sonatype" ) {
61
+ active = Active .ALWAYS
62
+ url.set(" https://central.sonatype.com/api/v1/publisher" )
63
+ stagingRepositories.add(" lib-core/build/staging-deploy" )
64
+ }
65
+ }
66
+ }
67
+ }
3
68
}
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
`java- library`
3
3
`maven- publish`
4
- id(" org.jreleaser" ) version " 1.15.0"
5
4
}
6
5
7
6
group = " io.github.gc-garcol"
8
- version = " 0 .0.4 "
7
+ version = " 1 .0.0 "
9
8
10
9
java {
11
10
toolchain {
@@ -45,7 +44,7 @@ publishing {
45
44
pom {
46
45
name.set(" cafe-ringbuffer" )
47
46
description.set(" cafe-ringbuffer" )
48
- url.set(" https://github.com/ gc-garcol/cafe-ringbuffer" )
47
+ url.set(" https://gc-garcol.github.io /cafe-ringbuffer/gc/garcol/libcore/package-summary.html " )
49
48
inceptionYear.set(" 2024" )
50
49
licenses {
51
50
license {
@@ -69,21 +68,16 @@ publishing {
69
68
}
70
69
71
70
repositories {
72
- maven {
73
- name = " GitHubPackages"
74
- url = uri(" https://maven.pkg.github.com/gc-garcol/cafe-ringbuffer" )
75
- credentials {
76
- username = System .getenv(" GITHUB_ACTOR" )
77
- password = System .getenv(" GITHUB_TOKEN" )
78
- }
79
- }
80
71
// maven {
81
- // name = "MavenCentral "
82
- // url = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ ")
72
+ // name = "GitHubPackages "
73
+ // url = uri("https://maven.pkg.github.com/gc-garcol/cafe-ringbuffer ")
83
74
// credentials {
84
- // username = System.getenv("MAVEN_USERNAME ")
85
- // password = System.getenv("MAVEN_PASSWORD ")
75
+ // username = System.getenv("GITHUB_ACTOR ")
76
+ // password = System.getenv("GITHUB_TOKEN ")
86
77
// }
87
78
// }
79
+ maven {
80
+ url = layout.buildDirectory.dir(" staging-deploy" ).get().asFile.toURI()
81
+ }
88
82
}
89
83
}
You can’t perform that action at this time.
0 commit comments