Set policy CMP0167 to avoid warnings with CMake 3.30 #446
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
name: Build Coal for Windows (CLANG) via Conda | |
on: [push,pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
env: | |
CCACHE_BASEDIR: "${GITHUB_WORKSPACE}" | |
CCACHE_DIR: "${GITHUB_WORKSPACE}/.ccache" | |
CCACHE_COMPRESS: true | |
CCACHE_COMPRESSLEVEL: 6 | |
strategy: | |
fail-fast: false | |
matrix: | |
name: [windows-latest-clang-cl] | |
include: | |
- name: windows-latest-clang-cl | |
os: windows-2019 | |
compiler: clang-cl | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/cache@v3 | |
with: | |
path: .ccache | |
key: ccache-windows-conda-clang-${{ matrix.os }}-${{ matrix.compiler }}-${{ github.sha }} | |
restore-keys: ccache-windows-conda-clang-${{ matrix.os }}-${{ matrix.compiler }}- | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: coal | |
auto-update-conda: true | |
environment-file: .github/workflows/conda/environment_windows.yml | |
python-version: "3.10" | |
auto-activate-base: false | |
- name: Build Coal | |
shell: cmd /C CALL {0} | |
run: | | |
call conda list | |
:: Tell Ninja to use clang-cl | |
set CC=clang-cl | |
set CXX=clang-cl | |
:: Create build | |
mkdir build | |
pushd build | |
cmake ^ | |
-G "Ninja" ^ | |
-DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX%\Library ^ | |
-DCMAKE_BUILD_TYPE=Release ^ | |
-DGENERATE_PYTHON_STUBS=ON ^ | |
-DPYTHON_SITELIB=%CONDA_PREFIX%\Lib\site-packages ^ | |
-DPYTHON_EXECUTABLE=%CONDA_PREFIX%\python.exe ^ | |
-DCOAL_HAS_QHULL=ON ^ | |
-DBUILD_PYTHON_INTERFACE=ON ^ | |
.. | |
if errorlevel 1 exit 1 | |
:: Build and Install | |
ninja install -v | |
if errorlevel 1 exit 1 | |
:: Testing | |
ctest --output-on-failure -C Release | |
if errorlevel 1 exit 1 | |
:: Test Python import | |
cd .. | |
python -c "import coal" | |
if errorlevel 1 exit 1 | |
check: | |
if: always() | |
name: check-windows-conda-clang | |
needs: | |
- build | |
runs-on: Ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |