Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,5 +170,17 @@ jobs:

run: |
cd src
mkdir -p ../nanoarrow-verify-tmp
echo "::group::Docker Pull"
docker compose run -e GITHUB_ACTIONS ${{ matrix.config.compose_args }} verify
docker compose run \
-e GITHUB_ACTIONS \
-e NANOARROW_TMPDIR=/nanoarrow-verify-tmp \
-v "$(pwd)/../nanoarrow-verify-tmp:/nanoarrow-verify-tmp" \
${{ matrix.config.compose_args }} verify

- name: Upload temp directory
if: failure()
uses: actions/upload-artifact@main
with:
path: nanoarrow-verify-tmp
name: nanoarrow-verify-tmp-${{ matrix.config.platform }}-${{ matrix.config.arch }}${{ matrix.config.extra_label }}
10 changes: 10 additions & 0 deletions valgrind.supp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@
# specific language governing permissions and limitations
# under the License.

{
<Arrow C++>:Library initialization
Memcheck:Cond
...
obj:*arrow*
...
fun:call_init*
fun:_dl_init
}

{
<jemalloc>:Thread locals don't appear to be freed
Memcheck:Leak
Expand Down
Loading