This is an automated email from the ASF dual-hosted git repository.
linxinyuan 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 a2eeb75a1f chore(ci): remove JOOQ Generation from CI (#3747)
a2eeb75a1f is described below
commit a2eeb75a1f84b9175d9fe7ecbe69559747aabecb
Author: Xinyuan Lin <[email protected]>
AuthorDate: Sat Sep 20 19:07:34 2025 -0700
chore(ci): remove JOOQ Generation from CI (#3747)
Since the JOOQ code generator was merged into the sbt compiler in PR
#3746, there’s no longer a need for a separate step for JOOQ code
generator in CI.
---
.github/workflows/github-action-build.yml | 2 --
1 file changed, 2 deletions(-)
diff --git a/.github/workflows/github-action-build.yml
b/.github/workflows/github-action-build.yml
index e9e2cbce80..470de46daa 100644
--- a/.github/workflows/github-action-build.yml
+++ b/.github/workflows/github-action-build.yml
@@ -112,8 +112,6 @@ jobs:
run: psql -h localhost -U postgres -f
deployment/k8s/texera-helmchart/files/texera_ddl.sql
env:
PGPASSWORD: postgres
- - name: Jooq Code Generator
- run: cd core && sbt "DAO/runMain
edu.uci.ics.texera.dao.JooqCodeGenerator"
- name: Compile with sbt
run: cd core && sbt clean package
- name: Run backend tests