Skip to content

ci: macos non-exe too #687

ci: macos non-exe too

ci: macos non-exe too #687

Workflow file for this run

name: ci
env:
CMAKE_BUILD_TYPE: Release
CMAKE_INSTALL_PREFIX: ~/libgem
GEMINI_ROOT: ~/libgem
CMAKE_GENERATOR: Ninja
HOMEBREW_NO_INSTALL_CLEANUP: 1
CMAKE_BUILD_PARALLEL_LEVEL: 4
# GEMINI_ROOT is used to find Gemini3D by PyGemini
on:
push:
paths:
- "**.py"
- ".github/workflows/**"
- "src/gemini3d/libraries.json"
- "!scripts/**"
- "!example/**"
- "!Examples/**"
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: macos-latest
python-version: "3.12"
- os: windows-latest
python-version: "3.12"
name: Lint ${{ matrix.os }} Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install -e .[lint]
- run: flake8
- run: mypy
core:
timeout-minutes: 45
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest]
include:
- os: macos-latest
python-version: '3.13'
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
steps:
- name: Git Checkout ${{ github.action_repository }}
uses: actions/checkout@v4
- uses: ./.github/workflows/composite-python
timeout-minutes: 15
env:
GEMINI_CIROOT: ${{ github.workspace }}/ci
GEMCI_ROOT: ${{ github.workspace }}/gemci
- name: upload test files if failed
if: failure()
uses: actions/upload-artifact@v4
with:
name: input-test-files
path: ${{ github.workspace }}/pytest
- uses: ./.github/workflows/composite-pkg
if: runner.os == 'Linux'
timeout-minutes: 15
- uses: ./.github/workflows/composite-gemini3d
if: runner.os == 'Linux'
timeout-minutes: 15
- name: Executable tests
if: runner.os == 'Linux'
run: pytest ${{ github.workspace }} -m "exe" --basetemp=${{ github.workspace }}/pytest
env:
GEMCI_ROOT: ${{ github.workspace }}/gemci
GEMINI_CIROOT: ${{ github.workspace }}/ci
- name: upload test files if failed
if: failure()
uses: actions/upload-artifact@v4
with:
name: exe-test-files
path: ${{ github.workspace }}/pytest
# codecov coverage
# - run: pip install codecov pytest-cov
# - run: pytest --cov --cov-report=xml
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1