Skip to content

Commit

Permalink
julea: use upstream JULEA
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkuhn committed Mar 1, 2024
1 parent c03dbf8 commit 7b906d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ jobs:
run: |
sudo apt update || true
sudo apt --yes --no-install-recommends install pkgconf libglib2.0-dev libbson-dev
# FIXME use forked version
git clone --depth 1 --branch modules-conditional-unload https://github.com/tilpner/julea.git "${HOME}/julea"
git clone --depth 1 https://github.com/parcio/julea.git "${HOME}/julea"
- name: Install MSRV
run: |
cargo install cargo-msrv
Expand Down
5 changes: 2 additions & 3 deletions julea-betree/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,8 @@ unsafe extern "C" fn backend_iterate(

static mut BETREE_BACKEND: JBackend = JBackend {
type_: JBackendType::J_BACKEND_TYPE_OBJECT,
component: JBackendComponent::J_BACKEND_COMPONENT_SERVER
| JBackendComponent::J_BACKEND_COMPONENT_CLIENT
| JBackendComponent::J_BACKEND_COMPONENT_NOT_UNLOADABLE,
component: JBackendComponent::J_BACKEND_COMPONENT_SERVER,
flags: JBackendFlags::J_BACKEND_FLAGS_DO_NOT_UNLOAD,
data: ptr::null_mut(),
anon1: JBackend__bindgen_ty_1 {
object: JBackend__bindgen_ty_1__bindgen_ty_1 {
Expand Down

0 comments on commit 7b906d2

Please sign in to comment.