-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: merge release branch in to master
Perform GitFlow release actions for release v1.0.0
- Loading branch information
Showing
317 changed files
with
41,680 additions
and
9,205 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ block_labels = [ "DO NOT MERGE", "wip" ] | |
cut_body_after = "---" | ||
committer.name = "mayastor-bors" | ||
committer.email = "[email protected]" | ||
commit_title = "chore(bors): merge pull request ${PR_REFS}" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: "Release Artifacts" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'release/**' | ||
|
||
jobs: | ||
kubectl-plugin: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: cachix/install-nix-action@v15 | ||
with: | ||
nix_path: nixpkgs=channel:nixos | ||
- run: nix-build -A utils.release.linux-musl.kubectl-plugin | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: kubectl-mayastor | ||
path: ./result/bin/kubectl-mayastor | ||
- run: nix-build -A utils.release.windows-gnu.kubectl-plugin | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: kubectl-mayastor.exe | ||
path: ./result/bin/kubectl-mayastor.exe |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
**/target | ||
**/*.terraform* | ||
**/*.tfstate* | ||
**/rust-tags.* | ||
/package-lock.json | ||
**/target | ||
/.idea | ||
/default.etcd/ | ||
/node_modules/ | ||
/package-lock.json | ||
/package.json | ||
/result* | ||
/tests/bdd/__pycache__/ | ||
/tests/bdd/openapi/ | ||
/tests/bdd/csi_pb2.py | ||
/tests/bdd/csi_pb2_grpc.py | ||
/chart/charts/ | ||
/chart/Chart.lock | ||
/openapi/* | ||
!/openapi/Cargo.toml | ||
!/openapi/build.rs | ||
/tests/bdd/common/__pycache__ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "rpc/mayastor-api"] | ||
path = rpc/mayastor-api | ||
url = https://github.com/openebs/mayastor-api |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
# changed from 100 to 80 | ||
max_width = 80 | ||
max_width = 100 | ||
# default is false | ||
wrap_comments = true | ||
comment_width = 80 | ||
# was true | ||
struct_lit_single_line = false | ||
#changed from Mixed | ||
imports_layout = "HorizontalVertical" | ||
comment_width = 100 | ||
struct_lit_single_line = true | ||
imports_layout = "Mixed" | ||
# changed from Preserve (merge_imports = false) | ||
imports_granularity="Crate" | ||
#default false | ||
spaces_around_ranges = true | ||
# was 2015 | ||
edition = "2018" | ||
|
||
ignore = [ | ||
"openapi" | ||
] |
Oops, something went wrong.