File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed
Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 6363 mypy --config-file tests/.mypy.ini $( git ls-tree -r --name-only HEAD | 'grep' -E '[.]py$' )
6464
6565 Tests :
66+ if : false
6667 runs-on : ${{ matrix.os }}
6768
6869 strategy :
@@ -194,17 +195,9 @@ jobs:
194195 timeout-minutes : 10
195196
196197 strategy :
198+ fail-fast : false
197199 matrix :
198200 include :
199- - os : freebsd
200- version : ' 14.3'
201- display_name : FreeBSD
202- - os : freebsd
203- version : ' 13.5'
204- display_name : FreeBSD
205- - os : openbsd
206- version : ' 7.7'
207- display_name : OpenBSD
208201 # OpenBSD 6.9 is not supported because it only has Python 3.8, which is not supported anymore.
209202 # NetBSD 9.4 is not supported because its interface seems to mirror libFUSE 2.6 and therefore is HIGHLY
210203 # incompatible. Even fuse_context.umask is missing!
Original file line number Diff line number Diff line change @@ -158,6 +158,8 @@ def get_fuse_version(libfuse):
158158 f"Found library { _libfuse_path } has wrong major version: { fuse_version_major } . Expected FUSE 2!"
159159 )
160160
161+ print ("FOUND FUSE LIBRARY VERSION:" , fuse_version_major , fuse_version_minor )
162+
161163if _system == 'NetBSD' and (fuse_version_major , fuse_version_minor ) == (2 , 9 ):
162164 # For some reason, NetBSD return 2.9 even though the API is 3.10!
163165 # The correct version is important for the struct layout!
You can’t perform that action at this time.
0 commit comments