Skip to content

Commit 3afe0bc

Browse files
author
Huahai Yang
committed
case is significant in linux, but not on macos
1 parent 57f09b1 commit 3afe0bc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.cirrus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ task:
4040
task:
4141
macos_instance:
4242
image: ghcr.io/cirruslabs/macos-runner:sonoma
43-
only_if: $CIRRUS_TAG != ''
44-
# only_if: "changesInclude('macosx-arm64/*', '.cirrus.yml')"
43+
# only_if: $CIRRUS_TAG != ''
44+
only_if: "changesInclude('macosx-arm64/*', '.cirrus.yml')"
4545
script: |
4646
git submodule init
4747
git submodule update

linux-arm64/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject org.clojars.huahaiy/dtlvnative-linux-arm64 "0.11.0"
1+
(defproject org.clojars.huahaiy/dtlvnative-linux-arm64 "0.11.1"
22
:description "Native dependency of embedded library version of Datalevin on Linux Arm64"
33
:url "https://github.com/juji-io/dtlvnative"
44
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"

macosx-arm64/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject org.clojars.huahaiy/dtlvnative-macosx-arm64 "0.11.0"
1+
(defproject org.clojars.huahaiy/dtlvnative-macosx-arm64 "0.11.1"
22
:description "Native dependency of embedded library version of Datalevin on Apple Silicon"
33
:url "https://github.com/juji-io/dtlvnative"
44
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"

src/java/datalevin/dtlvnative/DTLVConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"../../src/"},
1111
include = {"lmdb.h", "dtlv.h"},
1212
// preloadpath = {"."},
13-
preload = {"lmdb", "dtlv"},
13+
preload = {"lmdb"},
1414
linkpath = {"../../src/"},
15-
link = {"DTLV"}
15+
link = {"dtlv"}
1616
),
1717
target = "datalevin.dtlvnative.DTLV"
1818
)

0 commit comments

Comments
 (0)