bedrock icon indicating copy to clipboard operation
bedrock copied to clipboard

Restructure Bedrock Repo

Open sarath-p opened this issue 5 years ago • 0 comments

As a:

Developer

I want:

Organize Bedrock repo to prepare for SPK repo merge.

So that:

Cluster/Infra code is organized in a single folder cluster

Describe the solution you'd like:

Make changes to existing Bedrock Repo as defined in Acceptance criteria section below.

Current Bedrock Repo

├── .github
├── cluster
├── docs
├── gitops
├── pipelines
├── test
├── tools
├── LICESNE
├── README.md
├── .gitignore
├── azure-pipelines.yml

Acceptance Criteria:

  • [ ] Move azure-pipelines.yml file from the root to cluster\build\pipelines directory and make sure all pipelines still works.
  • [ ] Move docs folder to cluster folder and make sure all doc links works.
  • [ ] Move test folder to cluster folder and make sure all tests and pipelines still works.
  • [ ] Move tools directory to cluster\build folder and make sure existing Bedrock release process still works.
  • [ ] Move following files form the root directory to cluster and make sure cluster project can be opened in VS Code.
    • LICESNE
    • README.md
    • .gitignore

Bedrock Repo after implementing above tasks

├── .github
├── gitops
├── cluster
    ├─ build
       ├── pipelines
           ├── azure-pipelines.yml
       ├── tools
    ├─ docs
    ├── test
    ├── LICESNE
    ├── README.md
    ├── .gitignore

Additional context:

It is part of an an SPK repo merging into Bedrock epic

Does this require updates to documentation?: No

sarath-p avatar Mar 11 '20 17:03 sarath-p