Skip to content
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

feat: extract service integrations into separate crates #702

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9508d42
feat: draft of extracting service integrations
oddgrd Mar 10, 2023
5bde6a3
refactor: revert codegen changes
oddgrd Mar 10, 2023
275c632
refactor: depend on shuttle_runtime & service integration
oddgrd Mar 10, 2023
2788e9a
feat: remove rocket bin, comment out version check
oddgrd Mar 10, 2023
ff57736
feat: impl from for integration wrapper
oddgrd Mar 10, 2023
966eb3c
feat: cleanup shuttle-axum docs, remove version check
oddgrd Mar 11, 2023
994b9cc
feat: actix-web service integration
oddgrd Mar 11, 2023
19ef966
feat: extract poem service integration
oddgrd Mar 11, 2023
c6d2033
feat: extract poise service integration
oddgrd Mar 11, 2023
017c9c2
feat: extract rocket service integration
oddgrd Mar 11, 2023
3257234
feat: extract salvo service integration
oddgrd Mar 11, 2023
d042562
feat: extract the serenity service integration
oddgrd Mar 11, 2023
68955b9
feat: extract the thruster service integration
oddgrd Mar 11, 2023
916f989
feat: extract warp service integration
oddgrd Mar 11, 2023
94531de
feat: extract the tower service integration
oddgrd Mar 11, 2023
3b66433
feat: delete persist from service
oddgrd Mar 11, 2023
a9128f8
feat: extract tide service integration
oddgrd Mar 11, 2023
f0aefe2
feat: update cargo.lock
oddgrd Mar 11, 2023
5659b23
Merge branch 'shuttle-next' into feature/eng-490-extract-the-service-…
oddgrd Mar 11, 2023
131cf6b
feat: make service integration inner pub
oddgrd Mar 11, 2023
41e0127
Merge remote-tracking branch 'upstream/shuttle-next' into feature/eng…
oddgrd Mar 13, 2023
22a6a23
fix: merge fixes
oddgrd Mar 13, 2023
830c2d1
refactor: rename integrations, remove comment
oddgrd Mar 13, 2023
6b03a74
ci: run check-standalone on services
oddgrd Mar 13, 2023
fbd88ff
Merge branch 'shuttle-next' into feature/eng-490-extract-the-service-…
oddgrd Mar 13, 2023
6ae1d49
feat: update test resources
oddgrd Mar 13, 2023
eecda1e
ci: refactor workspace-clippy job
oddgrd Mar 13, 2023
5ab7994
fix: add tokio dev dep to services
oddgrd Mar 13, 2023
4dfc724
fix: remaining services tests
oddgrd Mar 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 23 additions & 22 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,17 @@ commands:
shuttle-shared-db = { path = "$PWD/resources/shared-db" }
shuttle-secrets = { path = "$PWD/resources/secrets" }
shuttle-static-folder = { path = "$PWD/resources/static-folder" }
shuttle-axum = { path = "$PWD/services/shuttle-axum" }
shuttle-actix-web = { path = "$PWD/services/shuttle-actix-web" }
shuttle-poem = { path = "$PWD/services/shuttle-poem" }
shuttle-poise = { path = "$PWD/services/shuttle-poise" }
shuttle-rocket = { path = "$PWD/services/shuttle-rocket" }
shuttle-salvo = { path = "$PWD/services/shuttle-salvo" }
shuttle-serenity = { path = "$PWD/services/shuttle-serenity" }
shuttle-thruster = { path = "$PWD/services/shuttle-thruster" }
shuttle-tide = { path = "$PWD/services/shuttle-tide" }
shuttle-tower = { path = "$PWD/services/shuttle-tower" }
shuttle-warp = { path = "$PWD/services/shuttle-warp" }
EOF
install-rust:
steps:
Expand Down Expand Up @@ -162,10 +173,6 @@ jobs:
- run: cargo check --workspace --all-targets
- save-cargo-cache
workspace-clippy:
parameters:
framework:
description: "Framework to activate"
type: string
executor: docker-rust
steps:
- checkout
Expand All @@ -174,7 +181,7 @@ jobs:
- run: |
cargo clippy --tests \
--all-targets \
--features="codegen,builder,<< parameters.framework >>" \
--all-features \
--no-deps -- \
--D warnings \
-A clippy::let-unit-value \
Expand Down Expand Up @@ -393,25 +400,8 @@ workflows:
jobs:
- workspace-fmt
- workspace-clippy:
name: workspace-clippy-<< matrix.framework >>
requires:
- workspace-fmt
matrix:
parameters:
framework:
[
"web-actix-web",
"web-axum",
"web-rocket",
"web-poem",
"web-thruster",
"web-tide",
"web-tower",
"web-warp",
"web-salvo",
"bot-serenity",
"bot-poise",
]
- check-standalone:
matrix:
parameters:
Expand All @@ -421,6 +411,17 @@ workflows:
- resources/secrets
- resources/shared-db
- resources/static-folder
- services/shuttle-actix-web
- services/shuttle-axum
- services/shuttle-poem
- services/shuttle-poise
- services/shuttle-rocket
- services/shuttle-salvo
- services/shuttle-serenity
- services/shuttle-thruster
- services/shuttle-tide
- services/shuttle-tower
- services/shuttle-warp
- service-test:
requires:
- workspace-clippy
Expand Down
Loading