Update SkiaGLFWExample-v4.py #80
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [main] | |
jobs: | |
tests: | |
name: tests on ${{ matrix.os }} (${{ matrix.arch }}) for ${{ matrix.cp }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest] | |
arch: [auto64] | |
cp: ["cp312"] | |
env: | |
PYGLFW_LIBRARY: glfw-3.4.bin.MACOS/lib-universal/libglfw.3.dylib | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
run: python -m pip install pyopengl glfw pysdl2 pysdl2-dll | |
- run: python -m pip install --pre skia-python | |
- run: python issue-214-glut.py | |
- run: python issue-214-sdl2.py | |
# https://github.com/glfw/glfw/issues/2573 Compatibility of linux headless tests within Github CI | |
# https://github.com/glfw/glfw/issues/2570 Compatibility of glfw with the Apple software render in github CI | |
# https://github.com/FlorianRhiem/pyGLFW/issues/80 Compatibility with github's CI Mac OS X runner images | |
# https://github.com/glfw/glfw/pull/2571 Apple software renderer retry | |
# - run: python issue-214-glfw.py |