-
Notifications
You must be signed in to change notification settings - Fork 9
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
♻️👷 Refactor CICD Pipeline #1311
Merged
Merged
Conversation
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
acff444
to
3376a98
Compare
9e084d5
to
0ea1536
Compare
3af644e
to
2138ece
Compare
2138ece
to
1f12d57
Compare
ebec554
to
247bdd6
Compare
* We don't really use it for anything
* `hyperledger/aries-cloudagent-python` -> `openwallet-foundation/acapy`
* Remove Lint Job (Soon™ to be replaced with Ruff)
14036b0
to
d871e4a
Compare
K8s Regression Test Coverage
|
K8s Test Coverage
|
K8s Regression Test Coverage
|
* To be moved out of this repo Soon™
|
K8s Test Coverage
|
K8s Regression Test Coverage
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
style-check.yml
into CICDDeploy and Test EKS is now a single job consisting of Composite actions.
This makes maintaining the CICD pipeline easier as it modularizes the workflow a bit.
This also means that there global concurrency group isn't on the entire pipeline, but instead just on the Deploy and Test EKS.
This means that, other than Deploy and Test EKS, multiple workflows can run simultaneously.
Previously, for running the local tests, we used a matrix to create 5 Github hosted runners to run 5 copies of the local dev stack, and then run subsets of the tests. We would then combine the test coverage reports.
Now, due to optimizations made with parallelizing tests and to the local dev infrastructure, we can run everything on a single Github hosted runner, greatly simplifying the local testing and coverage reporting.
Closes DIDC-105 and DIDC-305
FYI, @ff137 and @cl0ete, due to the removal of
uv
you will need to reinitialize the.venv
(rm -rf .venv && mise run poetry:install
)