Skip to content

Commit

Permalink
Fix Android 15 test
Browse files Browse the repository at this point in the history
  • Loading branch information
yujincheng08 committed Feb 17, 2024
1 parent 7d4987c commit e0e8cc1
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 433 deletions.
1 change: 1 addition & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
uses: actions/checkout@v3
with:
submodules: 'recursive'
ssh-key: ${{ secrets.SSH_KEY }}
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: 'recursive'
ssh-key: ${{ secrets.SSH_KEY }}
- name: Install doxygen
run: sudo apt install -y doxygen
- name: Generate doxygen
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@
[submodule "docs/doxygen-awesome-css"]
path = docs/doxygen-awesome-css
url = https://github.com/jothepro/doxygen-awesome-css.git
[submodule "test/src/main/jni/external/lsparself"]
path = test/src/main/jni/external/lsparself
url = [email protected]:LSPosed/lsparself.git
5 changes: 3 additions & 2 deletions test/src/main/jni/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ project("lsplant_test")
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

add_library(test SHARED test.cpp elf_util.cpp)
add_subdirectory(external/lsparself)
add_library(test SHARED test.cpp)
find_package(dobby REQUIRED CONFIG)
find_package(lsplant REQUIRED CONFIG)
target_link_libraries(test log dobby::dobby lsplant::lsplant)
target_link_libraries(test log dobby::dobby lsplant::lsplant lsparself)
284 changes: 0 additions & 284 deletions test/src/main/jni/elf_util.cpp

This file was deleted.

Loading

0 comments on commit e0e8cc1

Please sign in to comment.