File: HACKING.md

package info (click to toggle)
agda-stdlib 2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,196 kB
  • sloc: haskell: 375; makefile: 32; sh: 28; lisp: 1
file content (286 lines) | stat: -rw-r--r-- 10,300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
Contributing to the library
===========================

Thank you for your interest in contributing to the Agda standard library.
Hopefully this guide should make it easy to do so! Feel free to ask any
questions on the Agda mailing list. Before you start please read the
[style-guide](https://github.com/agda/agda-stdlib/blob/master/doc/style-guide.md).

What is an acceptable contribution?
===================================

- The contribution should be useful in a diverse set of areas.

- The bar for accepting contributions that use the FFI to depend on external
  (i.e. Haskell, JavaScript) packages is much higher.

- If the same concept already exists in the library, there needs to be a *very* good
  reason to add a different formalisation.

- There should be evidence that the code works. Usually this will be proofs, but sometimes
  for purely computational contributions this will involve adding tests.

- It should use the minimal set of Agda features, i.e. it should normally use
  the Agda option pragmas `--cubical-compatible` and `--safe`, with the occasional use of
  `--with-K`, `--sized`, `--guardedness` in certain situations.

In general, if something is in a general undergraduate Computer Science or Mathematics
textbook it is probably (!) contributable.

Note on contributions to related/'coupled' modules
==================================================

Before making changes to a `Data` module please have a look at related modules
and see if they have any content along similar lines. If so, then please
follow those conventions (e.g. naming, argument order).
For example, if working on `Data.Rational`, please check `Data.Rational.Unnormalised`
or if working on `Data.Vec` please check `Data.List` and vice versa.
Likewise, if adding to such modules, please try to make companion additions
to the related ones, or at least to make a task-list in the comments on your PR,
indicating what outstanding work may be left for subsequent contributions/contributors.

Setup
=====

The typical workflow when contributing to the standard library's repository
is to interact with two remote versions of the repository:

1. agda/agda-stdlib, the official one from which you can pull updates so that
   your contributions end up on top of whatever the current state is.

2. USER/agda-stdlib, your fork to which you can push branches with contributions
   you would like to merge

This tutorial guides you to set up a local copy of agda-stdlib so that you can
start contributing. Once things are set up properly,  you can stick to only
steps 5., 6., 7., 8. and 9. for future contributions.

1. Fork the agda-stdlib repository
----------------------------------

Go to https://github.com/agda/agda-stdlib/ and click the 'Fork' button in the
top right corner. This will create a copy of the repository under your username.
We assume in the rest of this document that this username is 'USER'.

2. Double check-line ending settings if not on Linux
----------------------------------------------------

If you are on a Mac, make sure that your git options has `autocrlf` set  to `input`.
This can be done by executing
```
git config --global core.autocrlf input
```
If you are on Windows, make sure that your editor can deal with Unix format files.

3. Obtain a local copy of agda/agda-stdlib
------------------------------------------

Obtain a local copy of the agda-stdlib repository. Here we are going to retrieve
it from the `agda/agda-stdlib` repository so that `master` always points to the
state the official library is in.

```shell
git clone git@github.com:agda/agda-stdlib
```

**NB**:
  if you have not added a public key to your github profile to set up
  git over ssh, you may need to use the https url instead of the git@ one
  (`https://github.com/agda/agda-stdlib`)


4. Add your fork as a secondary remote
--------------------------------------

As we have mentioned earlier the idea is to pull updates from `agda/agda-stdlib`
and to push branches to your fork. For that to work you will need to explain to
git how to refer to your fork. This can be done by declaring a remote like so
(again you may need to use the https url if you haven't configured git over ssh)

```shell
git remote add USER git@github.com:USER/agda-stdlib
```

You can check that this operation succeeded by fetching this newly added remote.
Git should respond with a list of branches that were found on your fork.

```shell
git fetch USER
```

***End of initial setup. When creating a future PRs one should start here.***.

5. Create a branch for your new feature
---------------------------------------

Now that we have a local copy, we can start working on our new feature.
The first step is to make sure we start from an up-to-date version of the
repo by synchronising `master` with its current state on `agda/agda-stdlib`.

```shell
git checkout master
git pull
```

The second step is to create a branch for that feature based off `master`.
Make sure to pick a fresh name in place of `new_feature`. We promptly push
this new branch to our fork using the `-u` option for `push`.

```shell
git checkout -b new_feature
git push USER -u new_feature
```

6. Make your changes
--------------------

You can then proceed to make your changes. Please follow existing
conventions in the library, see
[style-guide](https://github.com/agda/agda-stdlib/blob/master/doc/style-guide.md).
for details. Document your changes in `agda-stdlib-fork/CHANGELOG.md`.

If you are creating new modules, please make sure you are having a
proper header, and a brief description of what the module is for, e.g.
```
------------------------------------------------------------------------
-- The Agda standard library
--
-- {PLACE YOUR BRIEF DESCRIPTION HERE}
------------------------------------------------------------------------
```

If possible, each module should use the options `--safe` and
`--cubical-compatible`. You can achieve this by placing the following
pragma under the header and before any other line of code (including
the module name):
```
{-# OPTIONS --cubical-compatible --safe #-}
```

If a module cannot be made safe or needs the `--with-K` option then it should be
split into a module which is compatible with these options and an auxiliary
one which will either be called `SOME/PATH/Unsafe.agda` or `SOME/PATH/WithK.agda`
or explicitly declared as either unsafe or needing K in `GenerateEverything.hs`

7. [ Optional ] Run test suite locally
--------------------------------------

**NB** this step is optional as these tests will be run automatically
by our CI infrastructure when you open a pull request on Github, but it
can be useful to run it locally to get a faster turn around time when finding
problems.

Ensure your changes are compatible with the rest of the library by running
the commands
```
make clean
make test
```
inside the `agda-stdlib-fork` folder. Continue to correct any bugs
thrown up until the tests are passed. Note that the tests
require the use of a tool called `fix-whitespace`. See the
instructions at the end of this file for how to install this.

8. Add, commit and push your changes to your fork
-------------------------------------------------

Use the `git add X` command to add changes to file `X` to the commit,
or `git add .` to add all the changed files.

Run the command `git commit` and enter a meaningful description for
your changes.

Upload your changes to your fork by running `git push`.

9. Open a PR
------------

Once you're satisfied with your additions, you can make sure they have been
pushed to the feature branch by running

```shell
git status
```

and making sure there is nothing left to commit or no local commits to push.
You should get something like:

```
On branch new_feature
Your branch is up-to-date with 'USER/new_feature'.

nothing to commit, working tree clean
```

You can then go to `https://github.com/agda/agda-stdlib/pulls`, click on
the green 'New pull request' button and then the 'compare across forks' link.

You can then select your fork as the 'head repository' and the corresponding
feature branch and click on the big green 'Create pull request' button. The
library maintainers will then be made aware of your requested changes and
should be in touch soon.

10. Update the PR
------------------

If after opening a PR you realise you have forgotten something, or have received
a review asking you to change something, you can simply push more commits to the
branch and they will automatically be added to the PR.


How to enforce whitespace policies
----------------------------------

### Installing fix-whitespace

This tool is kept in the main agda organization. It can be installed by
following these instructions:
   ```
   git clone https://github.com/agda/fix-whitespace --depth 1
   cd fix-whitespace/
   cabal install
   ```

### Adding fix-whitespace as a pre-commit hook

You can add the following code to the file `.git/hooks/pre-commit` to
get git to run fix-whitespace before each `git commit` and ensure
you are never committing anything with a whitespace violation:

   ```
   #!/bin/sh

   fix-whitespace --check
   ```

Type-checking the README directory
----------------------------------

* By default the README files are not exported in the
  `standard-library.agda-lib` file in order to avoid
  clashing with other people's README files.

* If you wish to type-check a README file, then you will
  need to change the present working directory to `doc/`
  where an appropriate `standard-library-doc.agda-lib`
  file is present.

Continuous Integration (CI)
===========================

Updating the Haskell-CI workflow
--------------------------------

The file `.github/workflows/haskell-ci.yml` tests building the helpers specified in `agda-stdlib-utils.cabal`.
It is autogenerated by the tool [haskell-ci]
but has some custom modification which need to be restored after each regeneration of this workflow.

[haskell-ci] creates the workflow file from settings in the `cabal.haskell-ci` file
and from the contents of the `tested-with` field in the `agda-stdlib-utils.cabal` file.
After updating this field, run the following:
```
haskell-ci regenerate
patch --input=.github/haskell-ci.patch .github/workflows/haskell-ci.yml
```

[haskell-ci]: https://github.com/haskell-CI/haskell-ci