Issue #12 try with build and no uploads #81
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 --plat-name win_amd64 | ||
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 --plat-name win32 | ||
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 ubuntu manylinux | ||
if: matrix.os == 'ubuntu-latest' | ||
uses: RalfG/[email protected]_x86_64 | ||
with: | ||
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310' | ||
- 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 | ||