Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Nov 29, 2023
1 parent 0db3a82 commit d025b3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ jobs:
CIBW_BUILD: ${{ matrix.wheel }}
CIBW_TEST_COMMAND: python -m unittest discover -v -s {package}/tests
CIBW_BUILD_VERBOSITY: 1
CIBW_BEFORE_BUILD_MACOS: python --version
- uses: actions/upload-artifact@v3
with:
name: wheels
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ def run(self):
cmake_build_args += ["--config", "Release"]

# Build sleigh and pypcode_native extension
subprocess.check_call(["cmake", "-S", ".", "-B", BUILD_DIR] + cmake_config_args, cwd=ROOT_DIR)
call_args = ["cmake", "-S", ".", "-B", BUILD_DIR] + cmake_config_args
print('****** RUNNING CMAKE WITH ' + repr(call_args))
subprocess.check_call(call_args, cwd=ROOT_DIR)
subprocess.check_call(
["cmake", "--build", BUILD_DIR, "--parallel", "--verbose"] + cmake_build_args,
cwd=ROOT_DIR,
Expand Down

0 comments on commit d025b3b

Please sign in to comment.