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

jiadongb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git


The following commit(s) were added to refs/heads/main by this push:
     new 3c50566da1 fix(ci): replace removed JooqCodeGenerator with sbt 
jooqGenerate task (#4252)
3c50566da1 is described below

commit 3c50566da1ac7200bd9570f18da860e878497be1
Author: Jiadong Bai <[email protected]>
AuthorDate: Mon Mar 2 19:16:48 2026 -0800

    fix(ci): replace removed JooqCodeGenerator with sbt jooqGenerate task 
(#4252)
    
    ### What changes were proposed in this PR?
    
    This PR fixes the failing `generate-jooq` job in the
    `build-and-push-images` CI workflow.
    
    **The fix:** Replace the command in the workflow from:
    ```yaml
    run: sbt "DAO/runMain org.apache.texera.dao.JooqCodeGenerator"
    ```
    to:
    ```yaml
    run: sbt DAO/jooqGenerate
    ```
    
    ### Any related issues, documentation, discussions?
    
    Closes #4251
    
    ### How was this PR tested?
    
    Tested using my own fork:
    https://github.com/bobbai00/texera/actions/runs/22606607910/job/65499945831
    
    ### Was this PR authored or co-authored using generative AI tooling?
    
    Generated-by: Claude Code (claude-opus-4-6)
    
    Co-authored-by: Claude <[email protected]>
    Co-authored-by: Xinyuan Lin <[email protected]>
---
 .github/workflows/build-and-push-images.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build-and-push-images.yml 
b/.github/workflows/build-and-push-images.yml
index 065b10ccc6..e70c81a2d9 100644
--- a/.github/workflows/build-and-push-images.yml
+++ b/.github/workflows/build-and-push-images.yml
@@ -160,7 +160,7 @@ jobs:
           PGPASSWORD=postgres psql -h localhost -U postgres -f 
sql/texera_lakefs.sql
 
       - name: Generate JOOQ code
-        run: sbt "DAO/runMain org.apache.texera.dao.JooqCodeGenerator"
+        run: sbt DAO/jooqGenerate
 
       - name: Upload JOOQ generated code
         uses: actions/upload-artifact@v4

Reply via email to