WIP6 #9
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: macOS-conda | |
on: [push] | |
jobs: | |
build-macos: | |
runs-on: macos-latest | |
name: build-macos-qt${{matrix.qt_version_name}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set Conda Environment | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniconda-version: "latest" | |
activate-environment: ci_macos_conda | |
- name: Set conda classic solver | |
shell: bash -el {0} | |
run: conda install --solver=classic conda-forge::conda-libmamba-solver conda-forge::libmamba conda-forge::libmambapy conda-forge::libarchive | |
- name: Install Qt5 | |
shell: bash -el {0} | |
run: conda install conda-forge::qt | |
- name: Install OpenCascade | |
shell: bash -el {0} | |
run: conda install conda-forge::occt | |
- name: Install Assimp | |
shell: bash -el {0} | |
run: conda install conda-forge::assimp | |
- name: Conda infos | |
shell: bash -el {0} | |
run: | | |
echo "conda info" | |
conda info | |
echo "conda info --base" | |
conda info --base | |
echo "find . | grep cmake" | |
find . | grep cmake | |
- name: Get count of CPU cores | |
uses: SimenB/github-actions-cpu-cores@v1 | |
id: cpu-cores | |
- name: Build | |
run: | | |
mkdir ${{github.workspace}}/build | |
cd ${{github.workspace}}/build | |
cmake --version | |
set CMAKE_PREFIX_PATH=$CONDA/envs/ci_macos_conda;$CMAKE_PREFIX_PATH | |
cmake .. \ | |
-DMayo_BuildTests=ON \ | |
-DMayo_BuildPluginAssimp=ON | |
cmake --build . \ | |
--config Release \ | |
--parallel ${{steps.cpu-cores.outputs.count}} | |
- name: Execute Unit Tests | |
working-directory: ${{github.workspace}}/build | |
run: | | |
./mayo.app/Contents/MacOS/mayo --runtests |