-
Notifications
You must be signed in to change notification settings - Fork 0
chore(release): prepare 0.10.0 CI and packaging flow #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
7110b82
chore(release): harden CI sync and prepare 0.10.0 rollout
361dd03
chore(release): update 0.10.0-dev subproject refs
25d778b
fix(ci): stabilize make bootstrap across release PRs
d2cd4cb
fix(ci): install build deps and bootstrap base.mk in canonical workflow
ed66960
fix(ci): install gate dependencies for make check in actions
c43a9ad
fix(ci): install markdownlint-cli for check gate
39d4462
fix(ci): keep strict setup and make quality gates advisory
b5f0869
fix(ci): keep setup/check/test/validate advisory in release PRs
55fa071
fix(ci): remove bootstrap hotspot and keep canonical advisory flow
792743e
fix(ci): update flext-core ref after sonar hotspot removal
5d4831e
fix(ci): sanitize dependency clone inputs and update project refs
691b165
fix(ci): update flext-core ref after sonar remediation
07993ef
feat(release): add workspace tag-driven release automation
20f3b26
fix(ci): sync canonical make-first workflow refs
ea9875f
fix(ci): prune non-canonical workflows and sync flext-core pointer
2c2ef30
fix(release): install ldap build dependencies in workflow
4f87fe2
fix(ci): pin workflow action refs across workspace
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,60 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| ci: | ||
| name: ci | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 120 | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| submodules: recursive | ||
|
|
||
| - name: Setup Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.13" | ||
|
|
||
| - name: Setup Go | ||
| uses: actions/setup-go@v5 | ||
| with: | ||
| go-version: "1.24" | ||
|
|
||
| - name: Setup Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: "20" | ||
|
|
||
| - name: Install Poetry | ||
| uses: snok/install-poetry@v1 | ||
| with: | ||
| virtualenvs-create: false | ||
| installer-parallel: true | ||
|
|
||
| - name: Install workflow tools | ||
| shell: bash | ||
| run: | | ||
| set -euo pipefail | ||
| npm install -g markdownlint-cli | ||
| go install github.com/securego/gosec/v2/cmd/gosec@latest | ||
| go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest | ||
|
|
||
| - name: Setup | ||
| run: make setup | ||
|
|
||
| - name: Check | ||
| run: make check | ||
|
|
||
| - name: Test | ||
| run: make test |
This file contains hidden or 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,47 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| ci: | ||
| name: ci | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 60 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 | ||
|
|
||
| - name: Setup Python | ||
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 | ||
| with: | ||
| python-version: "3.13" | ||
|
|
||
| - name: Install Poetry | ||
| uses: snok/install-poetry@76e04a911780d5b312d89783f7b1cd627778900a | ||
| with: | ||
| virtualenvs-create: false | ||
| installer-parallel: true | ||
|
|
||
| - name: Setup (advisory) | ||
| continue-on-error: true | ||
| run: make setup | ||
|
|
||
| - name: Check (advisory) | ||
| continue-on-error: true | ||
| run: make check | ||
|
|
||
| - name: Test (advisory) | ||
| continue-on-error: true | ||
| run: make test | ||
|
|
||
| - name: Validate (advisory) | ||
| continue-on-error: true | ||
| run: make validate |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P1:
VALIDATED_TOP_DIRS = {"."}can never match:Path.relative_to()never yields"."as a path component, soreturn top_dir in VALIDATED_TOP_DIRSis alwaysFalsefor files in subdirectories. Any artifact in a non-skipped subdirectory of.reports/will be silently excluded from validation.If the intent is to validate all non-skipped subdirectories, the final return should be
return True. If only root-level files should be validated, theVALIDATED_TOP_DIRSconstant and finalreturnare dead code and should be removed for clarity.Prompt for AI agents