Skip to content

Commit 2e8b204

Browse files
committed
Revert "add debugging logs. move workflow for faster iterations"
This reverts commit 23860a9.
1 parent ebf0c35 commit 2e8b204

File tree

4 files changed

+10
-21
lines changed

4 files changed

+10
-21
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,6 @@ concurrency:
3232
run-name: ${{ github.ref_name }}
3333

3434
jobs:
35-
## Generate and upload node configuration documentation
36-
node-config-docsgen:
37-
name: Node Configuration Documentation
38-
runs-on: ubuntu-latest
39-
steps:
40-
- name: Generate Node Configuration Documentation
41-
id: node_config_docsgen
42-
uses: stacks-network/actions/stacks-core/node-config-docsgen@feat/node-config-docsgen
43-
4435
##
4536
## Jobs to execute everytime workflow runs
4637
## do not run if the trigger is any of the following:
@@ -102,7 +93,7 @@ jobs:
10293
needs:
10394
- rustfmt
10495
- check-release
105-
secrets: inherit
96+
secrets: inherit
10697
uses: ./.github/workflows/github-release.yml
10798
with:
10899
node_tag: ${{ needs.check-release.outputs.node_tag }}

.github/workflows/stacks-core-tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ jobs:
7171
validate: "true"
7272
redocly-version: "1.34"
7373

74-
# ## Generate and upload node configuration documentation
75-
# node-config-docsgen:
76-
# name: Node Configuration Documentation
77-
# runs-on: ubuntu-latest
78-
# steps:
79-
# - name: Generate Node Configuration Documentation
80-
# id: node_config_docsgen
81-
# uses: stacks-network/actions/stacks-core/node-config-docsgen@feat/node-config-docsgen
74+
## Generate and upload node configuration documentation
75+
node-config-docsgen:
76+
name: Node Configuration Documentation
77+
runs-on: ubuntu-latest
78+
steps:
79+
- name: Generate Node Configuration Documentation
80+
id: node_config_docsgen
81+
uses: stacks-network/actions/stacks-core/node-config-docsgen@feat/node-config-docsgen
8282

8383
## Disabled
8484
## - this test can take several hours to run
@@ -150,7 +150,7 @@ jobs:
150150
if: always()
151151
needs:
152152
- open-api-validation
153-
# - node-config-docsgen
153+
- node-config-docsgen
154154
- core-contracts-clarinet-test
155155
steps:
156156
- name: Check Tests Status

contrib/tools/config-docs-generator/generate-config-docs.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ main() {
7272
# Step 2: Extract documentation from source code using rustdoc
7373
log_info "Extracting configuration documentation using rustdoc..."
7474
EXTRACTED_JSON="$TEMP_DIR/extracted-config-docs.json"
75-
log_info "Extracted JSON: $EXTRACTED_JSON"
7675

7776
# Determine the list of structs to document from section_name_mappings.json
7877
# If the caller sets $TARGET_STRUCTS explicitly we honour that override.

contrib/tools/config-docs-generator/src/extract_docs.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ fn main() -> Result<()> {
131131
// Extract configuration documentation from the rustdoc JSON
132132
let config_docs = extract_config_docs_from_rustdoc(&rustdoc_json, &target_structs)?;
133133

134-
println!("Writing extracted docs to: {output_file}");
135134
// Write the extracted docs to file
136135
fs::write(output_file, serde_json::to_string_pretty(&config_docs)?)?;
137136

0 commit comments

Comments
 (0)