Skip to content

Commit c2cf235

Browse files
committed
CCM-12896: Make python types build in the pipeline
1 parent 479f1be commit c2cf235

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ dependencies: # Install dependencies needed to build and test the project @Pipel
1414

1515
generate: # Generate any autogenerated output @Pipeline
1616
npm run generate-dependencies
17-
$(MAKE) -C src/python-schema-generator generate
1817

1918
build: # Build the project artefact @Pipeline
2019
$(MAKE) -C docs build

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@
4242
"react": "^19.0.0"
4343
},
4444
"scripts": {
45+
"build-schemas": "make -C src/cloudevents/domains/digital-letters build-no-bundle publish-bundled-json",
4546
"clean": "npm run clean --workspaces --if-present",
46-
"generate-dependencies": "make -C src/cloudevents/domains/digital-letters build-no-bundle publish-bundled-json && npm run generate-dependencies --workspaces --if-present",
47+
"generate-dependencies": "npm run build-schemas && npm run generate-dependencies --workspaces --if-present && npm run generate-python-dependencies",
48+
"generate-python-dependencies": "make -C src/python-schema-generator generate",
4749
"lint": "npm run lint --workspaces",
4850
"lint:fix": "npm run lint:fix --workspaces",
4951
"start": "npm run start --workspace frontend",

0 commit comments

Comments
 (0)