Skip to content

Commit fac24e1

Browse files
committed
Fix sdist build and add CI job for testing it.
1 parent 5526125 commit fac24e1

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.github/workflows/python-publish-release.yml

+8
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,14 @@ jobs:
6262
cd bindings/python
6363
pipx run build --sdist
6464
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/*/src
70+
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCAPSTONE_BUILD_TESTS=OFF -DCAPSTONE_BUILD_CSTOOL=OFF -B build
71+
cmake --build build
72+
6573
- uses: actions/upload-artifact@v4
6674
with:
6775
path: bindings/python/dist/*.tar.gz

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -850,4 +850,4 @@ if(CAPSTONE_BUILD_CSTEST)
850850
endif()
851851

852852
set(CPACK_PROJECT_CONFIG_FILE "${CMAKE_SOURCE_DIR}/CPackConfig.cmake")
853-
include(CPackConfig.txt)
853+
include(CPackConfig.txt)

bindings/python/setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def copy_sources():
8989
shutil.copytree(os.path.join(BUILD_DIR, "include"), os.path.join(SRC_DIR, "include"))
9090

9191
src.extend(glob.glob(os.path.join(BUILD_DIR, "*.[ch]")))
92+
src.extend(glob.glob(os.path.join(BUILD_DIR, "*.in")))
9293
src.extend(glob.glob(os.path.join(BUILD_DIR, "*.mk")))
9394

9495
src.extend(glob.glob(os.path.join(BUILD_DIR, "Makefile")))
@@ -99,6 +100,8 @@ def copy_sources():
99100
src.extend(glob.glob(os.path.join(BUILD_DIR, "make.sh")))
100101
src.extend(glob.glob(os.path.join(BUILD_DIR, "CMakeLists.txt")))
101102
src.extend(glob.glob(os.path.join(BUILD_DIR, "pkgconfig.mk")))
103+
src.extend(glob.glob(os.path.join(BUILD_DIR, "CPackConfig.txt")))
104+
src.extend(glob.glob(os.path.join(BUILD_DIR, "CPackConfig.cmake")))
102105

103106
for filename in src:
104107
outpath = os.path.join(SRC_DIR, os.path.basename(filename))

0 commit comments

Comments
 (0)