kosiew commented on code in PR #20282:
URL: https://github.com/apache/datafusion/pull/20282#discussion_r2803523268


##########
.github/workflows/extended.yml:
##########
@@ -167,11 +167,19 @@ jobs:
         uses: ./.github/actions/setup-builder
         with:
           rust-version: stable
+      - name: Build sqllogictest binary
+        run: |
+          # Cargo emits test binaries with hashed filenames under 
target/.../deps.
+          # We use head to pick the first matching sqllogictests artifact from 
the JSON stream.
+          TEST_BIN=$(cargo build --profile release-nonlto --features 
backtrace,parquet_encryption --package datafusion-sqllogictest --test 
sqllogictests --message-format=json | sed -n 
's/.*"executable":"\([^"]*\)".*/\1/p' | head -n 1)

Review Comment:
   Runs:
   
   1. [cargo build, cargo 
test](https://github.com/apache/datafusion/actions/runs/21983438928/job/63511596715?pr=20339)
   
   2. [cargo build, use binary build to run 
test](https://github.com/apache/datafusion/actions/runs/21981129051/job/63503781240?pr=20335)
   
   3. [no cargo build, just cargo 
test](https://github.com/apache/datafusion/actions/runs/21983537068/job/63511915154?pr=20338)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to