Skip to content

Commit b15b6d2

Browse files
authored
chore(workflow): updating branch reference from master to develop (#335)
* updating branch reference from master to develop in following files: - CONTRIBUTING.md - GOVERNANCE.md - buildscripts/install-build-dep.sh - code-standard.md - developer-setup.md * updating .circleci/config.yml Signed-off-by: mayank <[email protected]>
1 parent b44c8c3 commit b15b6d2

File tree

6 files changed

+20
-19
lines changed

6 files changed

+20
-19
lines changed

.circleci/config.yml

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
version: 2
2-
jobs:
3-
build:
4-
branches:
5-
only:
6-
- zfs-0.7-release
1+
version: 2.1
72
jobs:
83
build_tag_0:
94
machine:
10-
enabled: true
5+
image: ubuntu-1604:202104-01
116
environment:
127
- CODECOV_TOKEN=04a04811-63ec-4800-b1d6-f741dc7e079a
138
working_directory: ~/github.com/openebs/zfs
@@ -58,7 +53,7 @@ jobs:
5853
bash <(curl -s https://codecov.io/bash)
5954
build_tag_1:
6055
machine:
61-
enabled: true
56+
image: ubuntu-1604:202104-01
6257
working_directory: ~/github.com/openebs/zfs
6358
steps:
6459
- checkout
@@ -95,7 +90,13 @@ jobs:
9590
ztest
9691
workflows:
9792
version: 2
98-
TAGS:
93+
build_tag_0:
9994
jobs:
100-
- build_tag_0
101-
- build_tag_1
95+
- build_tag_0:
96+
filters:
97+
branches:
98+
only: zfs-0.7-release
99+
- build_tag_1:
100+
filters:
101+
branches:
102+
only: zfs-0.7-release

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can contribute to cstor by filling an issue at [openebs/cstor](https://githu
88

99
* If you want to file an issue for bug or feature request, please see [Filing an issue](#filing-an-issue)
1010
* If you are a first-time contributor, please see [Steps to Contribute](#steps-to-contribute) and code standard(code-standard.md).
11-
* If you would like to work on something more involved, please connect with the OpenEBS Contributors. See [OpenEBS Community](https://github.com/openebs/openebs/tree/master/community)
11+
* If you would like to work on something more involved, please connect with the OpenEBS Contributors. See [OpenEBS Community](https://github.com/openebs/openebs/tree/HEAD/community)
1212

1313
## Filing an issue
1414
### Before filing an issue
@@ -95,7 +95,7 @@ For setting up a development environment on your local machine, see the detailed
9595
## Code Reviews
9696
All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult [GitHub Help](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests) for more information on using pull requests.
9797

98-
* If your PR is not getting reviewed or you need a specific person to review it, please reach out to the OpenEBS Contributors. See [OpenEBS Community](https://github.com/openebs/openebs/tree/master/community)
98+
* If your PR is not getting reviewed or you need a specific person to review it, please reach out to the OpenEBS Contributors. See [OpenEBS Community](https://github.com/openebs/openebs/tree/HEAD/community)
9999

100100
* If PR is fixing any issues from [github-issues](github.com/openebs/cstor/issues) then you need to mention the issue number with a link in the PR description. like: _fixes https://github.com/openebs/cstor/issues/56_
101101

GOVERNANCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
This is a OpenEBS sub project and abides by the
2-
[OpenEBS Project Governance](https://github.com/openebs/openebs/blob/master/GOVERNANCE.md).
2+
[OpenEBS Project Governance](https://github.com/openebs/openebs/blob/HEAD/GOVERNANCE.md).

buildscripts/install-build-dep.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ cd ..
7070
git clone https://github.com/${REPO_ORG}/libcstor.git
7171
cd libcstor || exit 1
7272
if [ "${BRANCH}" == "develop" ]; then
73-
git checkout master
73+
git checkout develop
7474
else
75-
git checkout ${BRANCH} || git checkout master
75+
git checkout ${BRANCH} || git checkout develop
7676
fi
7777

7878
sh autogen.sh;

code-standard.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Sign your commits
44

5-
We use the Developer Certificate of Origin (DCO) as an additional safeguard for the OpenEBS projects. This is a well established and widely used mechanism to assure that contributors have confirmed their right to license their contribution under the project's license. Please read [dcofile](https://github.com/openebs/openebs/blob/master/contribute/developer-certificate-of-origin). If you can certify it, then just add a line to every git commit message:
5+
We use the Developer Certificate of Origin (DCO) as an additional safeguard for the OpenEBS projects. This is a well established and widely used mechanism to assure that contributors have confirmed their right to license their contribution under the project's license. Please read [dcofile](https://github.com/openebs/openebs/blob/HEAD/contribute/developer-certificate-of-origin). If you can certify it, then just add a line to every git commit message:
66

77
````
88
Signed-off-by: Random J Developer <[email protected]>

developer-setup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
sudo make -j4
2626
sudo cp *.a /usr/lib
2727
```
28-
* Make sure that you have installed libcstor in the system. Refer [installing libcstor](https://github.com/openebs/libcstor/blob/master/developer-setup.md)
28+
* Make sure that you have installed libcstor in the system. Refer [installing libcstor](https://github.com/openebs/libcstor/blob/HEAD/developer-setup.md)
2929

3030
* Make sure that you have cloned and build fio(branch fio-3.7) code in the linux system.
3131
Please use below command for the fio
@@ -78,7 +78,7 @@ make
7878
```
7979

8080
* Test your changes
81-
Integration tests are written in c and c+. Test script is maintained at https://github.com/openebs/libcstor/blob/master/tests/cstor/script/test_uzfs.sh
81+
Integration tests are written in c and c+. Test script is maintained at https://github.com/openebs/libcstor/blob/HEAD/tests/cstor/script/test_uzfs.sh
8282
To run the run the integration tests.
8383
```sh
8484
../libcstor/tests/cstor/script/test_uzfs.sh -T all

0 commit comments

Comments
 (0)