Merge pull request #9926 from haskell/wip/succeed-on-nothing-copy
[cabal.git] / CONTRIBUTING.md
blob062ee73f3d524ec101bcfa688fa0e457a2784f80
1 # Contributing to Cabal
3 Building Cabal for hacking
4 --------------------------
6 If you use the latest version of cabal published on Hackage, it is sufficient to run:
8 ```
9 cabal build cabal
10 ```
12 If not, you aren't able to build the testsuite, so you need to disable the default `cabal.project` that implies configuring the testsuite, e.g., with:
14 ```
15 cabal build --project-file=cabal.release.project cabal
16 ```
18 > **Note**
19 > If you're using Nix, you might find it convenient to work within a shell that has all the `Cabal` development dependencies:
20 > ```
21 > $ nix-shell -p cabal-install ghc ghcid haskellPackages.fourmolu_0_12_0_0 pkgconfig zlib.dev
22 > ```
23 > A Nix flake developer shell with these dependencies is also available, supported solely by the community, through the command `nix develop github:yvan-sraka/cabal.nix`.
25 The location of your build products will vary depending on which version of
26 cabal-install you use to build; see the documentation section
27 [Where are my build products?](http://cabal.readthedocs.io/en/latest/nix-local-build.html#where-are-my-build-products)
28 to find the binary (or just run `find -type f -executable -name cabal`).
30 Here are some other useful variations on the commands:
32 ```
33 cabal build Cabal # build library only
34 cabal build Cabal-tests:unit-tests # build Cabal's unit test suite
35 cabal build cabal-tests # etc...
36 ```
38 Running tests
39 -------------
41 **Using GitHub Actions.**
42 If you are not in a hurry, the most convenient way to run tests on Cabal
43 is to make a branch on GitHub and then open a pull request; our
44 continuous integration service on GitHub Actions builds and
45 tests your code.  Title your PR with WIP so we know that it does not need
46 code review.
48 Some tips for using GitHub Actions effectively:
50 * GitHub Actions builds take a long time.  Use them when you are pretty
51   sure everything is OK; otherwise, try to run relevant tests locally
52   first.
54 * If you are only changing documentation in the `docs/` subdirectory,
55   or if you change `README.md` or `CONTRIBUTING.md`, then we only run a
56   small subset of the CI jobs. You can therefore open small PRs with
57   improvements to the documentation without feeling guilty about wasted
58   resources!
60 * Watch over your jobs on the [GitHub Actions website](http://github.org/haskell/cabal/actions).
61   If you know a build of yours is going to fail (because one job has
62   already failed), be nice to others and cancel the rest of the jobs,
63   so that other commits on the build queue can be processed.
65 **How to debug a failing CI test.**
66 One of the annoying things about running tests on CI is when they
67 fail, there is often no easy way to further troubleshoot the broken
68 build.  Here are some guidelines for debugging continuous integration
69 failures:
71 1. Can you tell what the problem is by looking at the logs?  The
72    `cabal-testsuite` tests run with `-v` logging by default, which
73    is dumped to the log upon failure; you may be able to figure out
74    what the problem is directly this way.
76 2. Can you reproduce the problem by running the test locally?
77    See the next section for how to run the various test suites
78    on your local machine.
80 3. Is the test failing only for a specific version of GHC, or
81    a specific operating system?  If so, try reproducing the
82    problem on the specific configuration.
84 4. Is the test failing on a GitHub Actions per-GHC build.
85    In this case, if you click on "Branch", you can get access to
86    the precise binaries that were built by GitHub Actions that are being
87    tested.  If you have an Ubuntu system, you can download
88    the binaries and run them directly.
90 If none of these let you reproduce, there might be some race condition
91 or continuous integration breakage; please file a bug.
93 **Running tests locally.**
94 To run tests locally with `cabal`, you will need to know the
95 name of the test suite you want.  Cabal and cabal-install have
96 several.  Also, you'll want to read [Where are my build products?](http://cabal.readthedocs.io/en/latest/nix-local-build.html#where-are-my-build-products)
98 The most important test suite is `cabal-testsuite`: most user-visible
99 changes to Cabal should come with a test in this framework.  See
100 [cabal-testsuite/README.md](cabal-testsuite/README.md) for more
101 information about how to run tests and write new ones.  Quick
102 start: use `cabal-tests` to run `Cabal` tests, and `cabal-tests
103 --with-cabal=/path/to/cabal` to run `cabal-install` tests
104 (don't forget `--with-cabal`! Your cabal-install tests won't
105 run without it).
107 There are also other test suites:
109 * `Cabal-tests:unit-tests` are small, quick-running unit tests
110   on small pieces of functionality in Cabal.  If you are working
111   on some utility functions in the Cabal library you should run this
112   test suite.
114 * `cabal-install:unit-tests` are small, quick-running unit tests on
115   small pieces of functionality in cabal-install.  If you are working
116   on some utility functions in cabal-install you should run this test
117   suite.
119 * `cabal-install:long-tests` are QuickCheck tests on
120   cabal-install's dependency solver, VCS, and file monitoring code.
121   If you are working on the solver you should run this test suite.
123 * `cabal-install:integration-tests2` are integration tests on some
124   top-level API functions inside the `cabal-install` source code.
126 For these test executables, `-p` which applies a regex filter to the test
127 names. When running `cabal-install` test suites, one need only use `cabal test` or
128 `cabal run <test-target>` in order to test locally.
130 QA Notes
131 --------
133 Manual Quality Assurance (QA) is performed to ensure that the changes impacting
134 the command-line interface, whether adding or modifying a behaviour,
135 are tested before being released. This allows us to catch UX regressions and put
136 a human perspective into testing.
138 Contributions that touch `cabal-install` are expected to include notes for the QA team.
139 They are a description of an expected result upon calling `cabal-install` with certain parameters,
140 and should be written in the body of the ticket or PR under their own heading, like this:
142 For instance:
144 > \#\# QA Notes
146 > Calling `cabal haddock-project` should produce documentation for the whole cabal project with the following defaults enabled:
147 > * Documentation lives in ./haddocks
148 > * The file `./haddocks/index.html` should exist
150 Manual QA is not expected to find every possible bug, but to really challenge the assumptions of the contributor, and to verify that their own testing
151 of their patch is not influenced by their setup or implicit knowledge of the system.
154 Code Style
155 ---------------
157 We use automated formatting with Fourmolu to enforce a unified style across the code bases. It is checked in the CI process.
158 After installing Fourmolu 0.12, there are some makefile targets to help formatting
159 the code base.
162 * `make style` - Format the `Cabal`, `Cabal-syntax` and `cabal-install` directories.
163 * `make style-modified` - Format files modified in the current tree.
164 * `make style-commit COMMIT=<ref>` - Format files modified between HEAD and the given reference.
166 Whitespace Conventions
167 ----------------------
169 We use automated whitespace convention checking. Violations can be fixed by
170 running [fix-whitespace](https://hackage.haskell.org/package/fix-whitespace). If
171 you push a fix of a whitespace violation, please do so in a _separate commit_.
173 Other Conventions
174 -----------------
176 * Format your commit messages [in the standard way](https://chris.beams.io/posts/git-commit/#seven-rules).
178 * A lot of Cabal does not have top-level comments.  We are trying to
179   fix this.  If you add new top-level definitions, please Haddock them;
180   and if you spend some time understanding what a function does, help
181   us out and add a comment.  We'll try to remind you during code review.
183 * If you do something tricky or non-obvious, add a comment.
185 * For local imports (Cabal module importing Cabal module), import lists
186   are NOT required (although you may use them at your discretion.)  For
187   third-party and standard library imports, please use either qualified imports
188   or explicit import lists.
190 * You can use basically any GHC extension supported by a GHC in our
191   support window, except Template Haskell, which would cause
192   bootstrapping problems in the GHC compilation process.
194 * Our GHC support window is five years for the Cabal library and three
195   years for cabal-install: that is, the Cabal library must be
196   buildable out-of-the-box with the dependencies that shipped with GHC
197   for at least five years.  GitHub Actions checks this, so most
198   developers submit a PR to see if their code works on all these
199   versions of GHC.  `cabal-install` must also be buildable on all
200   supported GHCs, although it does not have to be buildable
201   out-of-the-box. Instead, the `cabal-install/bootstrap.sh` script
202   must be able to download and install all of the dependencies (this
203   is also checked by CI). Also, self-upgrade to the latest version
204   (i.e. `cabal install cabal-install`) must work with all versions of
205   `cabal-install` released during the last three years.
207 * `Cabal` has its own Prelude, in `Distribution.Compat.Prelude`,
208   that provides a compatibility layer and exports some commonly
209   used additional functions. Use it in all new modules.
211 * As far as possible, please do not use CPP. If you must use it,
212   try to put it in a `Compat` module, and minimize the amount of code
213   that is enclosed by CPP.  For example, prefer:
214   ```
215   f :: Int -> Int
216   #ifdef mingw32_HOST_OS
217   f = (+1)
218   #else
219   f = (+2)
220   #endif
221   ```
223   over:
224   ```
225   #ifdef mingw32_HOST_OS
226   f :: Int -> Int
227   f = (+1)
228   #else
229   f :: Int -> Int
230   f = (+2)
231   #endif
232   ```
234 GitHub Ticket Conventions
235 -------------------
237 Each major `Cabal`/`cabal-install` release (e.g. 3.4, 3.6, etc.) has a
238 corresponding GitHub Project and milestone. A ticket is included in a release's
239 project if the release managers are tentatively planning on including a fix for
240 the ticket in the release, i.e. if they are actively seeking someone to work on
241 the ticket.
243 By contrast, a ticket is milestoned to a given release if we are open to
244 accepting a fix in that release, i.e. we would very much appreciate someone
245 working on it, but are not committing to actively sourcing someone to work on
248 GitHub Pull Request Conventions
249 -------------------
251 Every (non-backport) pull request has to go through a review and get 2
252 approvals. After this is done, the author of the pull request is expected to add
253 any final touches they deem important and put the `merge me` label on the pull
254 request. If the author lacks permissions to apply labels, they are welcome to
255 explicitly signal the merge intent on the discussion thread of the pull request,
256 at which point others (e.g., reviewers) apply the label. Merge buttons are
257 reserved for exceptional situations, e.g., CI fixes being iterated on or
258 backports/patches that need to be expedited for a release.
260 Currently there is a 2 day buffer for potential extra feedback between the last
261 update of a pull request (e.g. a commit, a rebase, an addition of the `merge me`
262 label) and the moment the Mergify bot picks up the pull request for a merge.
264 If your pull request consists of several commits, consider using `squash+merge
265 me` instead of `merge me`: the Mergify bot will squash all the commits into one
266 and concatenate the commit messages of the commits before merging.
268 There is also a `merge+no rebase` label. Use this very sparingly, as not rebasing
269 severely complicates Git history. It is intended for special circumstances, as when
270 the PR branch cannot or should not be modified. If you have any questions about it,
271 please ask us.
273 ### Pull Requests & Issues
275 A pull request *fixes* a problem that is *described* in an issue. Make sure to
276 file an issue before opening a pull request. In the issue you can illustrate
277 your proposed design, UX considerations, tradeoffs etc. and work them out with
278 other contributors. The PR itself is for implementation.
280 If a PR becomes out of sync with its issue, go back to the issue, update
281 it, and continue the conversation there. Telltale signs of Issue/PR diverging
282 are, for example: the PR growing bigger in scope; lengthy discussions
283 about things that are *not* implementation choices; a change in design.
285 If your PR is trivial you can omit this process (but explain in the PR why you
286 think it does not warrant an issue). Feel free to open a new issue (or new
287 issues) when appropriate.
290 Changelog
291 ---------
293 Anything that changes `cabal-install:exe:cabal` or changes exports from library
294 modules or changes behaviour of functions exported from packages published to
295 hackage is a <a id="user-visible-change">user-visible change</a>. Raising the
296 lower bound on `base` is most definitely a user-visible change because it
297 excludes versions of GHC from being able to build these packages.
299 When opening a pull request with a user-visible change, you should write one
300 changelog entry (or more in case of multiple independent changes) — the
301 information will end up in our release notes.
303 Changelogs for the next release are stored in the `changelog.d` directory.
304 The files follow a simple key-value format similar to the one for `.cabal` files.
305 Free-form text fields (`synopsis` and `description`) allow Markdown markup — please,
306 use markup to make our release notes more readable.
308 Here's an example:
310 ```cabal
311 synopsis: Add feature xyz
312 packages: cabal-install
313 prs: #0000
314 issues: #0000 #0000
315 significance: significant
317 description: {
319 - Detail number 1
320 - Detail number 2
325 Only the `synopsis` field is actually required, but you should also set the others where applicable.
327 | Field          | Description                                                                                                        |
328 | -----          | -----------                                                                                                        |
329 | `synopsis`     | Brief description of the change. Often just the pr title.                                                          |
330 | `description`  | Longer description, with a list of sub-changes. Not needed for small/atomic changes.                               |
331 | `packages`     | Packages affected by the change (`cabal-install`, `Cabal`...). Omit if it's an overarching or non-package change.  |
332 | `prs`          | Space-separated hash-prefixed pull request numbers containing the change (usually just one).                       |
333 | `issues`       | Space-separated hash-prefixed issue numbers that the change fixes/closes/affects.                                  |
334 | `significance` | Set to `significant` if the change is significant, that is if it warrants being put near the top of the changelog. |
336 You can find a large number of real-world examples of changelog files
337 [here](https://github.com/haskell/cabal/tree/bc83de27569fda22dbe1e10be1a921bebf4d3430/changelog.d).
339 At release time, the entries will be merged with
340 [this tool](https://github.com/fgaz/changelog-d).
342 In addition, if you're changing the `.cabal` file format specification you should
343 add an entry in `doc/file-format-changelog.rst`.
345 Communicating
346 -------------
348 There are a few main venues of communication:
350 * Most developers subscribe to receive messages from [all issues](https://github.com/haskell/cabal/issues); issues can be used to [open discussion](https://github.com/haskell/cabal/issues?q=is%3Aissue+is%3Aopen+custom+label%3A%22type%3A+discussion%22).  If you know someone who should hear about a message, CC them explicitly using the @username GitHub syntax.
352 * For more organizational concerns, the [mailing
353   list](http://www.haskell.org/mailman/listinfo/cabal-devel) is used.
355 * Many developers idle on `#hackage` on [`irc.libera.chat`](https://libera.chat). The `#ghc` channel is also a decently good bet.
356   * You can join the channel using a web client, even anonymously: https://web.libera.chat/#hackage
357   * Alternatively you can join it using [matrix](https://matrix.org/): https://matrix.to/#/#hackage:libera.chat
359 Releases
360 --------
362 Notes for how to make a release are at the
363 wiki page ["Making a release"](https://github.com/haskell/cabal/wiki/Making-a-release).
364 Currently, [@emilypi](https://github.com/emilypi), [@fgaz](https://github.com/fgaz) and [@Mikolaj](https://github.com/Mikolaj) have access to
365 `haskell.org/cabal`, and [@Mikolaj](https://github.com/Mikolaj) is the point of contact for getting
366 permissions.
368 Preview Releases
369 ----------------
371 We make preview releases available to facilitate testing of development builds.
373 Artifacts can be found on the [`cabal-head` release page](https://github.com/haskell/cabal/releases/tag/cabal-head).
374 The Validate CI pipeline generates tarballs with a `cabal` executable. The executable gets uploaded to this release by the pipelines that run on `master`.
376 We currently make available builds for:
377   - Linux, dynamically linked (requiring `zlib`, `gmp`, `glibc`)
378   - Linux, statically linked
379   - MacOS
380   - Windows
382 The statically linked Linux executables are built using Alpine.
383 To reproduce these locally, set up an Alpine build environment using GHCup,
384 and then build by calling `cabal build cabal-install --enable-executable-static`.
387 API Documentation
388 -----------------
390 Auto-generated API documentation for the `master` branch of Cabal is automatically uploaded here: http://haskell.github.io/cabal-website/doc/html/Cabal/.
392 ## Issue triage [![Open Source Helpers](https://www.codetriage.com/haskell/cabal/badges/users.svg)](https://www.codetriage.com/haskell/cabal)
394 You can contribute by triaging issues which may include reproducing bug reports or asking for vital information, such as version numbers or reproduction instructions. If you would like to start triaging issues, one easy way to get started is to [subscribe to cabal on CodeTriage](https://www.codetriage.com/haskell/cabal).
396 Hackage Revisions
397 -----------------
399 We are reactive rather than proactive with revising bounds on our dependencies
400 for code already released on Hackage. If you would benefit from a version bump,
401 please, open a ticket and get familiar with
402 [our revision policy](https://github.com/haskell/cabal/issues/9531#issuecomment-1866930240).
404 The burden of proof that the bump is harmless remains with you, but we have a CI
405 setup to show that our main pipeline ("Validate") is fine with the bump. To use
406 it, someone with enough permissions needs to go on the
407 [Validate workflow page](https://github.com/haskell/cabal/actions/workflows/validate.yml)
408 and dispatch it manually by clicking "Run workflow".
410 Running workflow manually as discussed above requires you to supply two inputs:
412 > allow-newer line
413 > constraints line
415 Going via an example, imagine that Cabal only allows `tar` or version less then
416 or equal to 0.6, and you want to bump it to 0.6. Then, to show that Validate
417 succeeds with `tar` 0.6, you should input
419 - `tar` to the "allow-newer line"
420 - `tar ==0.6` to the "constraints line"
422 Hopefully, running the Validate pipeline with these inputs succeeds and you
423 supply the link to the run in the ticket about bumping the bound and making a revision.
425 If interested in technical details, refer to the parts of `validate.yml` that
426 mention `hackage-revisions`.