This is an automated email from the ASF dual-hosted git repository.

blaginin pushed a commit to branch db/extended-allocator-samply
in repository https://gitbox.apache.org/repos/asf/datafusion.git

commit 593f49be9b287cddd2529630be3593d4ad9c81c3
Author: blaginin <[email protected]>
AuthorDate: Wed Mar 4 09:15:13 2026 +0000

    profile the tests
---
 .github/workflows/extended.yml | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/extended.yml b/.github/workflows/extended.yml
index 3dece9ebcc..e4054fab48 100644
--- a/.github/workflows/extended.yml
+++ b/.github/workflows/extended.yml
@@ -177,10 +177,21 @@ jobs:
         uses: ./.github/actions/setup-builder
         with:
           rust-version: stable
-      - name: Run sqllogictest
+      - name: Install samply
+        run: cargo install samply
+      - name: Build sqllogictest
+        run: cargo test --features backtrace,parquet_encryption --profile 
profiling --test sqllogictests --no-run
+      - name: Run sqllogictest with samply
         run: |
-          cargo test --features backtrace,parquet_encryption --profile 
release-nonlto --test sqllogictests -- --include-sqlite
-          cargo clean
+          samply record -o profile.json -- cargo test --features 
backtrace,parquet_encryption --profile profiling --test sqllogictests -- 
--include-sqlite
+      - name: Upload samply profile
+        if: always()
+        uses: actions/upload-artifact@v4
+        with:
+          name: samply-profile
+          path: profile.json
+      - name: Clean up
+        run: cargo clean
 
 
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to