Skip to content

Commit e91c279

Browse files
Release first version 0.0.1-rc1
2 parents 2ce59cf + c7ca0cb commit e91c279

30 files changed

+242
-78
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Publish package to the Maven Central Repository
22
on:
33
release:
44
types: [created]
5-
push:
6-
branches:
7-
- main
5+
#push:
6+
# branches:
7+
# - main
88
jobs:
99
build:
1010
runs-on: ubuntu-latest

.github/workflows/testing.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Integration testing
2+
on: push
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Integration testing
9+
run: |
10+
docker-compose up --exit-code-from litebtc --quiet-pull
11+
- name: Upload log
12+
uses: actions/upload-artifact@v2
13+
if: failure()
14+
with:
15+
path: |
16+
**/lite-bitcoin-rpc.log
17+
lib/build/reports/tests/test
18+
name: ${{ github.run_number }}
19+
- name: Upload test coverage
20+
uses: codecov/codecov-action@v1
21+
with:
22+
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
23+
#files: lib/build/reports/jacoco/*.xml # optional
24+
flags: unittests # optional
25+
name: codecov-umbrella # optional
26+
fail_ci_if_error: true # optional (default = false)
27+
- name: Publish Unit Test Results
28+
uses: EnricoMi/publish-unit-test-result-action@v1
29+
if: always()
30+
with:
31+
files: lib/build/test-results/**/*.xml

Dockerfile

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

README.md

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Lite Bitcoin RPC Wrapper
22

33
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/clightning4j/lite-bitcoin-rpc/Java%20CI?style=flat-square)
4+
[![codecov](https://codecov.io/gh/clightning4j/lite-bitcoin-rpc/branch/main/graph/badge.svg?token=KFIW2FXMBJ)](https://codecov.io/gh/clightning4j/lite-bitcoin-rpc)
45
![Maven Central](https://img.shields.io/maven-central/v/io.github.clightning4j/lite-bitcoin-rpc?style=flat-square)
56
![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/io.github.clightning4j/lite-bitcoin-rpc?server=https%3A%2F%2Foss.sonatype.org&style=flat-square)
67

docker-compose.yml

100644100755
File mode changed.

gradle.properties

100644100755
Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
GROUP_ID=io.github.clightning4j
22
ARTIFACT_ID=lite-bitcoin-rpc
3-
VERSION=0.0.1-rc1-SNAPSHOT
4-
MODULE_NAME=io.clightning4j.litebitcoinrpc
5-
6-
#Information abaut the maven repository
7-
signing.keyId=
8-
signing.password=
9-
signing.secretKeyRingFile=
10-
ossrhUsername=
11-
ossrhPassword=
3+
VERSION=0.0.1-rc1
4+
MODULE_NAME=io.clightning4j.litebitcoinrpc

gradle/wrapper/gradle-wrapper.jar

100644100755
File mode changed.

gradle/wrapper/gradle-wrapper.properties

100644100755
File mode changed.

gradlew.bat

100644100755
File mode changed.

0 commit comments

Comments
 (0)