Skip to content

Commit

Permalink
Skip test on macOS
Browse files Browse the repository at this point in the history
Unable to run GLFW test on macOS CI due to error

> Error #65545 from perl: NSGL: Failed to find a suitable pixel format
> glfwCreateWindow failed, No such file or directory

which is likely due to VM settings.
  • Loading branch information
zmughal committed Feb 7, 2022
1 parent d5fc9fb commit f803f56
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# after the test suite so you see something if the build worked.
#========================================================================

# skip test under under headless macOS
exit if exists $ENV{CI} and $^O eq 'darwin';

#========================================================================
# Simple GLFW example
# Copyright (c) Camilla Berglund <[email protected]>
Expand Down

0 comments on commit f803f56

Please sign in to comment.