You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TEST_RUNNER_PORT_MIN: "14000"# Must be larger than 12321, which is used for the http cache. See https://cirrus-ci.org/guide/writing-tasks/#http-cache
5
+
CI_FAILFAST_TEST_LEAVE_DANGLING: "1"# Cirrus CI does not care about dangling process and setting this variable avoids killing the CI script itself on error
5
6
CCACHE_SIZE: "200M"
6
7
CCACHE_DIR: "/tmp/ccache_dir"
7
8
CCACHE_NOHASHDIR: "1"# Debug info might contain a stale path if the build dir changes, but this is fine
@@ -71,6 +72,19 @@ task:
71
72
env:
72
73
<< : *CIRRUS_EPHEMERAL_WORKER_TEMPLATE_ENV
73
74
75
+
task:
76
+
name: 'tidy [jammy]'
77
+
<< : *GLOBAL_TASK_TEMPLATE
78
+
container:
79
+
image: ubuntu:jammy
80
+
cpu: 2
81
+
memory: 5G
82
+
# For faster CI feedback, immediately schedule the linters
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+19-10
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,8 @@ revolves around a meritocracy where contributors earn trust from the developer
12
12
community over time. Nevertheless, some hierarchy is necessary for practical
13
13
purposes. As such, there are repository "maintainers" who are responsible for
14
14
merging pull requests, as well as a "lead maintainer" who is responsible for the
15
-
release cycle as well as overall merging, moderation and appointment of
16
-
maintainers.
15
+
[release cycle](/doc/release-process.md) as well as overall merging, moderation
16
+
and appointment of maintainers.
17
17
18
18
Getting Started
19
19
---------------
@@ -153,7 +153,8 @@ the pull request affects. Valid areas as:
153
153
-`test`, `qa` or `ci` for changes to the unit tests, QA tests or CI code
154
154
-`util` or `lib` for changes to the utils or libraries
155
155
-`wallet` for changes to the wallet code
156
-
-`build` for changes to the GNU Autotools or reproducible builds
156
+
-`build` for changes to the GNU Autotools or MSVC builds
157
+
-`guix` for changes to the GUIX reproducible builds
157
158
158
159
Examples:
159
160
@@ -189,9 +190,14 @@ in the body of the pull request to indicate tasks are pending.
189
190
190
191
At this stage, one should expect comments and review from other contributors. You
191
192
can add more commits to your pull request by committing them locally and pushing
192
-
to your fork until you have satisfied all feedback.
193
+
to your fork.
193
194
194
-
Note: Code review is a burdensome but important part of the development process, and as such, certain types of pull requests are rejected. In general, if the **improvements** do not warrant the **review effort** required, the PR has a high chance of being rejected. It is up to the PR author to convince the reviewers that the changes warrant the review effort, and if reviewers are "Concept NACK'ing" the PR, the author may need to present arguments and/or do research backing their suggested changes.
195
+
You are expected to reply to any review comments before your pull request is
196
+
merged. You may update the code or reject the feedback if you do not agree with
197
+
it, but you should express so in a reply. If there is outstanding feedback and
198
+
you are not actively working on it, your pull request may be closed.
199
+
200
+
Please refer to the [peer review](#peer-review) section below for more details.
195
201
196
202
### Squashing Commits
197
203
@@ -322,6 +328,14 @@ maintainers take into account the peer review when determining if there is
322
328
consensus to merge a pull request (remember that discussions may have been
323
329
spread out over GitHub, mailing list and IRC discussions).
324
330
331
+
Code review is a burdensome but important part of the development process, and
332
+
as such, certain types of pull requests are rejected. In general, if the
333
+
**improvements** do not warrant the **review effort** required, the PR has a
334
+
high chance of being rejected. It is up to the PR author to convince the
335
+
reviewers that the changes warrant the review effort, and if reviewers are
336
+
"Concept NACK'ing" the PR, the author may need to present arguments and/or do
337
+
research backing their suggested changes.
338
+
325
339
#### Conceptual Review
326
340
327
341
A review can be a conceptual review, where the reviewer leaves a comment
0 commit comments