-
Notifications
You must be signed in to change notification settings - Fork 22
Monorepo refactoring #619
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
Open
herber
wants to merge
69
commits into
dev
Choose a base branch
from
chore/monorepo-refactoring
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+61,010
−14,958
Open
Monorepo refactoring #619
Changes from 51 commits
Commits
Show all changes
69 commits
Select commit
Hold shift + click to select a range
9eb741d
Add control test runner
herber 1539246
Improve docker builds
herber 038025d
Move tests to control
herber 932b5c1
Fix ci
herber b529de5
fix e2e tests
herber 9a7a2d0
Extend tests
herber 86416de
Remove stubs
herber 1e8750e
Import remaining services
herber e7083d2
Update client builds
herber 1df4f8e
Build fixes
herber 943789e
Build fixes
herber b99484f
maybe
herber c1c9878
More fixes
herber 97bf583
Fix tests
herber af93779
Vendor lowerdeck
herber 8174fe5
fixes
herber ad1feeb
sync
herber 9d0f468
wip
herber aecc9f4
wip
herber 9b04bb8
Move to nx and generated docker files
herber d767dc1
Fix docker process cleanup and tests
herber 41d1873
Build fixes
herber 9dba3d2
Patch origin build
herber 766d8dd
fixes
herber f8f49bd
fixes
herber 7b7c370
add caching
herber 626c8e8
build fixes
herber f040247
Build fixes
herber ec3d4ba
Build fixes
herber 2ed6686
wip
herber cbba684
Bump prisma
herber 0e86c71
Maybe
herber 8005621
Revert "Bump prisma"
herber fb2e1bf
Patch prisma versions
herber d794edb
Add core tests
herber 8d81ee9
Add core api ci
herber 20e66db
Build fixes
herber f8c7850
maybe
herber 1308e9f
update runner
herber db8cb8e
Improve caching
herber 2d2a98d
Fixes
herber 6d216c8
Maybe
herber 6f3ea85
maybe
herber d581596
Maybe
herber bc7a069
well
herber 83bde82
Remove full builds
herber 6278fb7
Make caching more aggressive
herber 71b48e2
More fixes
herber 6362c9a
Maybe
herber b76156a
More cache improvements
herber 8ceb6a4
Fixes
herber c41f7bf
Fixes
herber 85e7bbd
Harden caching
herber d1ef72f
Caching fixes
herber 98f1199
Harden cache
herber 7691649
Remove node modules from dockerfiles
herber 2f3e0ab
Patch frontend builds
herber b1260b9
fixes
herber a4b6ccf
maybe
herber ba7111b
Update run flow
herber fa57ab4
Build fixes
herber fd8eb36
Stop pushing control reuse images
herber 07279fd
Limit control image artifact downloads
herber cfa1e48
Fix object storage control env
herber 1f1ec1e
Fix control prebuilt healthchecks
herber 0b449cb
Preserve control service runner reuse
herber 85c1d07
Fix control prebuilt e2e loading
herber f20fcda
Fix control Forge health reuse
herber 4b3e020
Update artifact downloader
herber File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,105 @@ | ||
| name: Control | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| pull_request: | ||
|
|
||
| permissions: | ||
| contents: read | ||
| packages: read | ||
| actions: write | ||
|
|
||
| jobs: | ||
| warm-cache: | ||
| name: Warm Nx Cache | ||
| uses: ./.github/workflows/reusable-control.yml | ||
| secrets: inherit | ||
| with: | ||
| command: warm-cache | ||
| cache_prefix: control-ci | ||
| runs-on: ubuntu-latest | ||
|
|
||
| unit: | ||
| name: Unit (${{ matrix.service }}) | ||
| needs: warm-cache | ||
| uses: ./.github/workflows/reusable-control.yml | ||
| secrets: inherit | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| service: | ||
| - ares | ||
| - cargo | ||
| - code-bucket | ||
| - deflector | ||
| - forge | ||
| - function-bay | ||
| - origin | ||
| - shuttle | ||
| - signal | ||
| - slates-hub | ||
| - slates-registry | ||
| - subspace-controller | ||
| - subspace-public | ||
| - subspace-worker | ||
| - synthesis | ||
| - voyager | ||
| - relay | ||
| - object-storage | ||
|
cursor[bot] marked this conversation as resolved.
|
||
| with: | ||
| command: ci | ||
| mode: unit | ||
| filter: ${{ matrix.service }} | ||
| cache_prefix: control-ci | ||
| runs-on: ubuntu-latest | ||
|
|
||
| e2e: | ||
| name: E2E (${{ matrix.service }}) | ||
| needs: warm-cache | ||
| uses: ./.github/workflows/reusable-control.yml | ||
| secrets: inherit | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| service: | ||
| - ares | ||
| - cargo | ||
| - code-bucket | ||
| - deflector | ||
| - forge | ||
| - function-bay | ||
| - origin | ||
| - shuttle | ||
|
cursor[bot] marked this conversation as resolved.
|
||
| - signal | ||
| - slates-hub | ||
| - slates-registry | ||
| - subspace-controller | ||
| - subspace-public | ||
| - subspace-worker | ||
| - synthesis | ||
| - voyager | ||
| - relay | ||
| - object-storage | ||
| with: | ||
| command: ci | ||
| mode: e2e | ||
| filter: ${{ matrix.service }} | ||
| cache_prefix: control-ci | ||
| project_prefix: ${{ matrix.service }}-ci | ||
| runs-on: ubuntu-latest | ||
| checkout_submodules: ${{ matrix.service == 'subspace-controller' }} | ||
|
|
||
| core-api-e2e: | ||
| name: E2E (app-api) | ||
| needs: warm-cache | ||
| uses: ./.github/workflows/reusable-control.yml | ||
| secrets: inherit | ||
| with: | ||
| command: ci | ||
| mode: e2e | ||
| filter: app-api | ||
| modules: all | ||
| cache_prefix: control-ci | ||
| project_prefix: app-api-ci | ||
| runs-on: ubuntu-latest | ||
This file was deleted.
Oops, something went wrong.
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.