Skip to content

pull in transform gizmo fixes #323

pull in transform gizmo fixes

pull in transform gizmo fixes #323

Workflow file for this run

name: Test macOS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
# Skip running if the commit message contains '[ci skip]'
if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
name: Build wheels - ${{ matrix.os }}-${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: macos-15-intel
arch: x64
- os: macos-latest
arch: arm64
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.12'
- name: install python packages
run: python -m pip install numpy
- name: configure
run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DPOLYSCOPE_BACKEND_OPENGL3_GLFW=ON -DPOLYSCOPE_BACKEND_OPENGL_MOCK=ON ..
- name: build
run: cd build && make
- name: run test
run: python test/polyscope_test.py -v