Skip to content

Commit d59d33a

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

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-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

+2
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ def copy_sources():
9999
src.extend(glob.glob(os.path.join(BUILD_DIR, "make.sh")))
100100
src.extend(glob.glob(os.path.join(BUILD_DIR, "CMakeLists.txt")))
101101
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")))
102104

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

0 commit comments

Comments
 (0)