-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Regenerate and verify the address space files (#348)
in order to enforce congruence between it and the source nodeset. Furthermore drop the generated file from rustfmt ignore as it's apparently currently formatted.
- Loading branch information
1 parent
49285e4
commit 5e8b661
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: CI verify cleanly generated address space | ||
'on': | ||
workflow_call: null | ||
jobs: | ||
address_space: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout (GitHub) | ||
uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: npm install | ||
working-directory: tools/schema/ | ||
- name: Regenerate address space | ||
run: node gen_address_space | ||
working-directory: tools/schema/ | ||
- name: Format generated code | ||
# This invokes formatting of all nodeset children as well. | ||
run: rustfmt lib/src/server/address_space/generated/mod.rs | ||
- name: Verify generated code matches committed code | ||
run: git status --porcelain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
ignore = [ | ||
"server/src/address_space/generated", | ||
"types/src/node_ids.rs", | ||
"types/src/service_types", | ||
] |