Skip to content

Commit

Permalink
CI: add macos build based on conda package manager
Browse files Browse the repository at this point in the history
Relates to GitHub #186
  • Loading branch information
HuguesDelorme committed Aug 19, 2024
1 parent e5f1465 commit 86f94ae
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/ci_macos_conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
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: 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
export CMAKE_PREFIX_PATH="$CONDA/envs/ci_macos_conda/lib/cmake/Qt5;$CMAKE_PREFIX_PATH"
export CMAKE_PREFIX_PATH="$CONDA/envs/ci_macos_conda/lib/cmake/opencascade;$CMAKE_PREFIX_PATH"
export CMAKE_PREFIX_PATH="$CONDA/envs/ci_macos_conda/lib/cmake/assimp-5.4;$CMAKE_PREFIX_PATH"
cmake .. \
-DMayo_BuildTests=ON \
-DMayo_BuildPluginAssimp=ON \
-DCMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH
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
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,7 @@ add_custom_target(
.github/workflows/ci_linux.yml
.github/workflows/ci_linux_arm.yml
.github/workflows/ci_macos.yml
.github/workflows/ci_macos_conda.yml
.github/workflows/ci_windows.yml
images/credits.txt
scripts/bump-version.rb
Expand Down

0 comments on commit 86f94ae

Please sign in to comment.