@@ -194,7 +194,7 @@ jobs:
194194 - sanitizer : tsan
195195 sanitizer_flags : " -Zsanitizer=thread"
196196 name : " Rust/C++ FFI tests (${{ matrix.sanitizer }})"
197- timeout-minutes : 30
197+ timeout-minutes : 5
198198 env :
199199 ASAN_OPTIONS : " symbolize=1:check_initialization_order=1:detect_leaks=1:leak_check_at_exit=1"
200200 LSAN_OPTIONS : " report_objects=1"
@@ -217,9 +217,6 @@ jobs:
217217 sccache : s3
218218 - uses : actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
219219 - uses : ./.github/actions/setup-prebuild
220- - name : Install rustfilt
221- run : |
222- cargo install rustfilt
223220 - name : Install Rust nightly toolchain
224221 run : |
225222 rustup toolchain install $NIGHTLY_TOOLCHAIN
@@ -241,8 +238,7 @@ jobs:
241238 - name : Run tests
242239 run : |
243240 set -o pipefail
244- # re-enable once we can fix this hang
245- # ./vortex-ffi/build/test/vortex_ffi_test 2>&1 | rustfilt
241+ ./vortex-ffi/build/test/vortex_ffi_test
246242 - name : Run examples
247243 run : |
248244 set -o pipefail
@@ -251,11 +247,11 @@ jobs:
251247 # error: Unable to walk dir: File system loop found
252248 rm -fr vortex-ffi/build/_deps/nanoarrow-src/python
253249
254- ./vortex-ffi/build/examples/write_sample file.vortex 2>&1 | rustfilt
255- ./vortex-ffi/build/examples/write_sample file2.vortex 2>&1 | rustfilt
256- ./vortex-ffi/build/examples/dtype '*.vortex' 2>&1 | rustfilt
257- ./vortex-ffi/build/examples/scan '*.vortex' 2>&1 | rustfilt
258- ./vortex-ffi/build/examples/scan_to_arrow '*.vortex' 2>&1 | rustfilt
250+ ./vortex-ffi/build/examples/write_sample file.vortex
251+ ./vortex-ffi/build/examples/write_sample file2.vortex
252+ ./vortex-ffi/build/examples/dtype '*.vortex'
253+ ./vortex-ffi/build/examples/scan '*.vortex'
254+ ./vortex-ffi/build/examples/scan_to_arrow '*.vortex'
259255
260256 miri :
261257 name : " Rust tests (miri)"
0 commit comments