zhengruifeng commented on code in PR #55726:
URL: https://github.com/apache/spark/pull/55726#discussion_r3206070573
##########
.github/workflows/build_and_test.yml:
##########
@@ -659,6 +729,14 @@ jobs:
$py -m pip list
echo ""
done
+ - name: Download precompiled artifact
+ uses: actions/download-artifact@v6
+ with:
+ name: spark-compile-${{ github.run_id }}
+ - name: Extract precompiled artifact
+ run: |
+ tar -xjf compile-artifact.tar.bz2
+ rm compile-artifact.tar.bz2
Review Comment:
it need more changes in `dev/run-tests.py`, I'd prefer make this an optional
optimization (continue-on-error: true), if some step fails (precompile fails or
artifact gets evicted), fallback to old path.
We can remove such fallback if it works well for some time.
--
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]