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

chore: move opengauss pitr to solutions directory #488

Merged
merged 5 commits into from
Jul 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions .github/workflows/pitr-golint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ on:
branches:
- main
paths:
- 'pitr/**'
- 'solutions/opengauss/pitr/**'
- '.github/workflows/pitr-golint.yml'
- 'pitr/agent/.golangci-lint.yml'
- 'pitr/cli/.golangci-lint.yml'
- 'solutions/opengauss/pitr/agent/.golangci-lint.yml'
- 'solutions/opengauss/pitr/cli/.golangci-lint.yml'

jobs:
changes:
Expand All @@ -51,9 +51,9 @@ jobs:
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.49.0
- name: Lint Pitr Cli
run: |
cd pitr/cli
cd solutions/opengauss/pitr/cli
$(go env GOPATH)/bin/golangci-lint run -v --timeout 300s ./...
- name: Lint Pitr Agent
run: |
cd pitr/agent
cd solutions/opengauss/pitr/agent
$(go env GOPATH)/bin/golangci-lint run -v --timeout 300s ./...
10 changes: 5 additions & 5 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
branches: [ main ]
paths:
- 'shardingsphere-operator/**'
- 'pitr/**'
- 'solutions/opengauss/pitr/**'
- '.github/workflows/unit-test.yml'
jobs:
operator:
Expand All @@ -40,17 +40,17 @@ jobs:
make test
- name: "pitr agent test"
run: |
cd pitr/agent
cd solutions/opengauss/pitr/agent
make test
- name: "pitr cli test"
run: |
cd pitr/cli
cd solutions/opengauss/pitr/cli
make test
- name: "aggregate reports"
run: |
cat ./shardingsphere-operator/cover.out >> cover.out
cat ./pitr/cli/cover.out >> cover.out
cat ./pitr/agent/cover.out >> cover.out
cat ./solutions/opengauss/pitr/cli/cover.out >> cover.out
cat ./solutions/opengauss/pitr/agent/cover.out >> cover.out
- name: "code coverage"
uses: codecov/codecov-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ShardingSphere on Cloud is under active development and is evolving rapidly. Alt

The community encourage users to try out ShardingSphere on Cloud and provide feedback on their experience. Your input is valuable for the ongoing development and enhancement of the project. Please feel free to report any issues, suggestions, or feature requests on our [GitHub Issue Tracker](https://github.com/apache/shardingsphere-on-cloud/issues).

## 🚀🚀 Spinning up a ShardingSphere cluster on Kubernetes in one minutes !
## 🚀🚀 Spinning up a ShardingSphere cluster on Kubernetes in one minute !

### A Demo of Starting `ShardingSphere Proxy` Using Helm Charts

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading