Skip to content

Parse set() options correctly #322

Parse set() options correctly

Parse set() options correctly #322

Workflow file for this run

# Copyright 2021 CMakePP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: CMinx Installed via CMake
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ['3.8.13', '3.9.13', '3.10.5']
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- uses: lukka/[email protected]
- name: Build
run: |
python3 --version
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=`pwd`/install -DBUILD_TESTING=ON
cmake --build build
cmake --install build
if ! command -v install/bin/cminx &> /dev/null
then
exit 1
fi
cd build
ctest --output-on-failure