Skip to content

Commit 0e43794

Browse files
committed
update java CI
1 parent 58898e1 commit 0e43794

File tree

1 file changed

+1
-28
lines changed

1 file changed

+1
-28
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Build bitcoinkernel
5959
run: |
6060
cd bitcoinkernel/bitcoin
61-
cmake -B build -DBUILD_KERNEL_LIB=ON -DCMAKE_BUILD_TYPE=Release
61+
cmake -B build -DBUILD_KERNEL_LIB=ON -DBUILD_UTIL_CHAINSTATE=ON -DBUILD_KERNEL_TEST=ON -DENABLE_IPC=OFF
6262
cmake --build build -j$(nproc 2>/dev/null || sysctl -n hw.ncpu)
6363
sudo cmake --install build
6464
@@ -87,30 +87,3 @@ jobs:
8787
with:
8888
name: build-artifacts-${{ matrix.os }}-java${{ matrix.java }}
8989
path: build/libs/
90-
91-
code-quality:
92-
name: Code Quality Checks
93-
runs-on: ubuntu-latest
94-
95-
steps:
96-
- name: Checkout code
97-
uses: actions/checkout@v4
98-
with:
99-
fetch-depth: 0
100-
101-
- name: Set up JDK 25
102-
uses: actions/setup-java@v4
103-
with:
104-
java-version: 25
105-
distribution: 'temurin'
106-
cache: 'gradle'
107-
108-
- name: Grant execute permission for gradlew
109-
run: chmod +x gradlew
110-
111-
- name: Run checkstyle (if configured)
112-
run: ./gradlew checkstyleMain checkstyleTest --no-daemon
113-
continue-on-error: true
114-
115-
- name: Run spotbugs (if configured)
116-
run: ./gradlew spotbugsMain --no-daemon

0 commit comments

Comments
 (0)