File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 3030 runs-on : ${{ matrix.platform }}
3131 steps :
3232 - if : matrix.platform == 'macos-latest'
33- run : brew reinstall gcc
33+ run : |
34+ brew reinstall gcc
35+ echo MACOSX_DEPLOYMENT_TARGET=`sw_vers -productVersion` >> $GITHUB_ENV
3436
3537 - if : matrix.platform == 'windows-latest'
3638 uses : msys2/setup-msys2@v2
6971
7072 - run : pytest -v -s -We -p no:unraisableexception tests
7173
72- - if : matrix.platform != 'ubuntu-latest'
73- run : python -m build
74+ - run : |
75+ python -m build 2>&1 | tee build.log
76+ exit `fgrep -i warning build.log | wc -l`
77+
78+ - if : matrix.platform == 'ubuntu-latest'
79+ run : rm dist/*
7480
7581 - if : matrix.platform != 'ubuntu-latest'
7682 uses : actions/upload-artifact@v2
Original file line number Diff line number Diff line change @@ -134,6 +134,9 @@ target_include_directories(PyPartMC PRIVATE
134134)
135135target_compile_definitions (PyPartMC PRIVATE VERSION_INFO=${VERSION_INFO} )
136136target_link_libraries (PyPartMC PRIVATE partmclib)
137+ if (APPLE )
138+ target_link_options (PyPartMC PRIVATE -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind)
139+ endif ()
137140
138141### pedantics ######################################################################################
139142
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ include gitmodules/sundials/src/sunlinsol/spbcgs/sunlinsol_spbcgs.c
3939include gitmodules/sundials/src/sunlinsol/spfgmr/sunlinsol_spfgmr.c
4040include gitmodules/sundials/src/sunlinsol/spgmr/sunlinsol_spgmr.c
4141include gitmodules/sundials/src/sunlinsol/sptfqmr/sunlinsol_sptfqmr.c
42- include gitmodules/sundials/sundials_nvector_senswrapper.h
4342
4443include gitmodules/pybind11/CMakeLists.txt
4544include gitmodules/pybind11/tools/pybind11Common.cmake
You can’t perform that action at this time.
0 commit comments