From b32abf84081c5c81272fae38b9cf9b0e0183830c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A1=A5=E4=B8=8B=E7=BA=A2=E8=8D=AF?= Date: Fri, 13 Mar 2026 02:33:44 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E6=9E=84=E5=BB=BA=E6=97=B6=E5=8A=A0=20--?= =?UTF-8?q?lib=20=E4=BB=A5=E4=BA=A7=E5=87=BA=20JNI=20cdylib=20(libdht=5Fcr?= =?UTF-8?q?awler.so)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made-with: Cursor --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5952bfa..1e93f00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -142,12 +142,12 @@ jobs: fi shell: bash - - name: Build (example + JNI cdylib) + - name: Build (lib cdylib + examples) run: | if [ "${{ matrix.use_cross }}" = "true" ]; then - cross build --release --target ${{ matrix.target }} --examples --features mimalloc,metrics,jni + cross build --release --target ${{ matrix.target }} --lib --examples --features mimalloc,metrics,jni else - cargo build --release --target ${{ matrix.target }} --examples --features mimalloc,metrics,jni + cargo build --release --target ${{ matrix.target }} --lib --examples --features mimalloc,metrics,jni fi shell: bash