Issue #12 remove plat-name flag and many linux #89
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-ver: ['3.12'] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
experimental: [false] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-ver }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install wheel twine auditwheel build | |
- name: Add msbuild to PATH | |
if: matrix.os == 'windows-latest' | |
uses: microsoft/[email protected] | |
- name: build Windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
mkdir build | |
mkdir install | |
cd build | |
cmake -G "Visual Studio 17 2022" -A x64 -DBUILD_PYTHON:BOOL=ON -DBUILD_SHARED_LIBS:BOOL=ON -Dndicapi_BUILD_APPLICATIONS:BOOL=OFF -DCMAKE_INSTALL_PREFIX=../install .. | |
cmake --build . | |
cd ../ | |
python.exe -m build | |
rm -r build | |
rm -r install | |
- name: build Windows-32bit | |
if: matrix.os == 'windows-latest' | |
run: | | |
mkdir build | |
mkdir install | |
cd build | |
cmake -G "Visual Studio 17" -A Win32 -DBUILD_PYTHON:BOOL=ON -DBUILD_SHARED_LIBS:BOOL=ON -Dndicapi_BUILD_APPLICATIONS:BOOL=OFF -DCMAKE_INSTALL_PREFIX=../install .. | |
cmake --build . | |
cd ../ | |
python.exe -m build | |
rm -r build | |
rm -r install | |
- name: build ubuntu | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
mkdir build | |
cd build | |
cmake -DBUILD_PYTHON:BOOL=ON -DBUILD_SHARED_LIBS:BOOL=ON -Dndicapi_BUILD_APPLICATIONS:BOOL=OFF .. | |
make | |
cd .. | |
python -m build | |
- name: build macos | |
if: matrix.os == 'macos-latest' | |
run: | | |
mkdir build | |
cd build | |
cmake -DBUILD_PYTHON:BOOL=ON -DBUILD_SHARED_LIBS:BOOL=ON -Dndicapi_BUILD_APPLICATIONS:BOOL=OFF .. | |
make | |
cd .. | |
python -m build | |