diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f13133a..e3aba19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,9 @@ jobs: run: sudo apt-get update && sudo apt-get install -y fuse3 libfuse-dev - name: Build run: go build ./... - # Exclude TestPosix and TestMemFS because some of the tests hung indefinitely. - # Also, tests need to be run sequentially to avoid hanging indefinitely. - - name: Run tests - run: go test -v -p 1 -bench=. -run="TestSuccessfulMount|TestNonexistentMountPoint|TestCachingFS|TestDynamicFS|TestErrorFS|TestFlushFS|TestForgetFS|TestHelloFS|TestInterruptFS|TestReadonlyLoopbackFS|TestStatFS" ./... + # Disabled running `go test` because running tests hung at random, + # preventing us from running the tests in CI reliably. + # (cf. https://github.com/jacobsa/fuse/issues/97) macos-build: runs-on: macos-latest