File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 62
62
cd bindings/python
63
63
pipx run build --sdist
64
64
65
+ - name : Test build with sdist
66
+ run : |
67
+ TMP_DIR=$(mktemp -d)
68
+ tar -xf bindings/python/dist/*.tar.gz -C $TMP_DIR/
69
+ cd $TMP_DIR/capstone-*/src
70
+ cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCAPSTONE_BUILD_TESTS=OFF -DCAPSTONE_BUILD_CSTOOL=OFF build
71
+ cmake --build build
72
+
65
73
- uses : actions/upload-artifact@v4
66
74
with :
67
75
path : bindings/python/dist/*.tar.gz
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ option(CAPSTONE_BUILD_DIET "Build diet library" OFF)
56
56
option (CAPSTONE_BUILD_TESTS "Build tests" ${PROJECT_IS_TOP_LEVEL} )
57
57
option (CAPSTONE_BUILD_CSTOOL "Build cstool" ${PROJECT_IS_TOP_LEVEL} )
58
58
option (CAPSTONE_BUILD_CSTEST "Build cstest" OFF )
59
+ option (CAPSTONE_BUILD_FUZZER "Build the fuzzer" OFF )
59
60
option (CAPSTONE_USE_DEFAULT_ALLOC "Use default memory allocation functions" ON )
60
61
option (CAPSTONE_ARCHITECTURE_DEFAULT "Whether architectures are enabled by default" ON )
61
62
option (CAPSTONE_DEBUG "Whether to enable extra debug assertions" OFF )
@@ -850,4 +851,4 @@ if(CAPSTONE_BUILD_CSTEST)
850
851
endif ()
851
852
852
853
set (CPACK_PROJECT_CONFIG_FILE "${CMAKE_SOURCE_DIR} /CPackConfig.cmake" )
853
- include (CPackConfig.txt)
854
+ include (CPackConfig.txt)
Original file line number Diff line number Diff line change @@ -99,6 +99,8 @@ def copy_sources():
99
99
src .extend (glob .glob (os .path .join (BUILD_DIR , "make.sh" )))
100
100
src .extend (glob .glob (os .path .join (BUILD_DIR , "CMakeLists.txt" )))
101
101
src .extend (glob .glob (os .path .join (BUILD_DIR , "pkgconfig.mk" )))
102
+ src .extend (glob .glob (os .path .join (BUILD_DIR , "CPackConfig.txt" )))
103
+ src .extend (glob .glob (os .path .join (BUILD_DIR , "CPackConfig.cmake" )))
102
104
103
105
for filename in src :
104
106
outpath = os .path .join (SRC_DIR , os .path .basename (filename ))
You can’t perform that action at this time.
0 commit comments