Skip to content

Fix conan on arm

Fix conan on arm #352

Workflow file for this run

# SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas Müller
#
# SPDX-License-Identifier: GPL-3.0-or-later
name: Unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master, develop ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests-fullSetup:
strategy:
matrix:
setup: [ {os: ubuntu-latest}, {os: windows-latest}, {os: macos-latest}]
runs-on: ${{matrix.setup.os}}
if: "!contains(github.event.head_commit.message, 'skip-ci')"
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install conan
run: pip install conan>2
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores
- run: python3 Setup.py --options CompileBaryo=True
- name: Get Preset
run: python3 .github/GetProfile.py
- run: cmake --version
- run: cmake --list-presets
- name: cmake
run: cmake --preset $GeneratedCMakeProfile
- name: build
run: cmake --build --preset $GeneratedCMakeProfile -j${{ steps.cpu-cores.outputs.count }}
- name: run tests
run: ctest --preset $GeneratedCMakeProfile -j --output-on-failure