Skip to content

Commit 22f1579

Browse files
committed
Add CI shell scripts
We would like to put all the CI scripts in a single place instead of copied to each repository. Add a `ci/` directory and in it a `run_task.sh` script as well as auxilary scripts required. Include a README to document the directory.
1 parent 7ed1438 commit 22f1579

File tree

2 files changed

+460
-0
lines changed

2 files changed

+460
-0
lines changed

ci/README.md

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
# CI tools
2+
3+
Continuous Integration tools used by the `rust-bitcoin` org.
4+
5+
#### Table Of Contents
6+
7+
- [Repository](#repository)
8+
* [Lock files](#lock-files)
9+
* [Crates](#crates)
10+
* [Pinning](#dependency-pinning)
11+
- [Workflows](#workflows)
12+
- [get_matrix.sh](#get_matrix.sh)
13+
- [test_vars.sh](#test_vars.sh)
14+
- [run_task.sh](#run_task.sh)
15+
* [Environment variables](#environment-variables)
16+
* [Integration tests](#integration-tests)
17+
* [Crate specific tests](#crate-specific-tests)
18+
* [Fuzzing](#fuzzing)
19+
20+
## Repository
21+
22+
The `run_task.sh` script expects a few things to be present in all repositories.
23+
24+
- lock files: `Cargo-recent.lock` and `Cargo-minimal.lock`
25+
- crate declarations: `contrib/crates.sh`
26+
- pinning: `contrib/pin.sh`
27+
28+
## Lock files
29+
30+
All repositories MUST include a minimal and recent lock file:
31+
32+
- `Cargo-recent.lock`: A manifest with some recent versions numbers that pass CI.
33+
- `Cargo-minimal.lock`: A manifest with some minimal version numbers that pass CI.
34+
35+
The `run_taks.sh` script invokes copies each to `Cargo.toml` and uses `cargo --locked`.
36+
37+
(Suggestion: `cargo +nightly build -- -Z minimal-versions`)
38+
39+
### Crates
40+
41+
All repositories MUST include a file `crates.sh` that declares the crates to be tested.
42+
43+
```bash
44+
#!/usr/bin/env bash
45+
46+
# Crates in this workspace to test (excl. fuzz an integration-tests).
47+
CRATES="json client"
48+
```
49+
50+
### Pinning
51+
52+
Pinning is optional.
53+
54+
If MSRV build requires pinning of any dependencies then a `contrib/pin.sh` script should
55+
be present in the repository, for example:
56+
57+
```yaml
58+
#!/usr/bin/env bash
59+
#
60+
# Do pinning as required for current MSRV.
61+
62+
set -euo pipefail
63+
64+
cargo update -p cc --precise 1.0.79
65+
```
66+
67+
## Workflows
68+
69+
If you want to use a specific version of nightly then use:
70+
71+
```yml
72+
Prepare:
73+
runs-on: ubuntu-latest
74+
outputs:
75+
nightly_version: ${{ steps.read_toolchain.outputs.nightly_version }}
76+
steps:
77+
- name: "Checkout repo"
78+
uses: actions/checkout@v4
79+
- name: "Read nightly version"
80+
id: read_toolchain
81+
run: echo "nightly_version=$(cat nightly-version)" >> $GITHUB_OUTPUT
82+
```
83+
84+
## run_task.sh
85+
86+
Used by github actions to run a CI job, can also be run from the terminal.
87+
88+
See `run_task.sh --help` for available tasks.
89+
90+
### Environment variables
91+
92+
All crates MUST include a file `contrib/test_vars.sh`
93+
94+
```bash
95+
#!/usr/bin/env bash
96+
97+
# Test all these features with "std" enabled.
98+
#
99+
# Ignore this if crate does not have "std" feature.
100+
FEATURES_WITH_STD=""
101+
102+
# Test all these features without "std" enabled.
103+
#
104+
# Use this even if crate does not have "std" feature.
105+
FEATURES_WITHOUT_STD=""
106+
107+
# Run these examples.
108+
EXAMPLES=""
109+
```
110+
111+
`EXAMPLES` string is of format:
112+
```bash
113+
"EXAMPLE_1:FEATURE_A,FEATURE_B EXAMPLE_2:FEATURE_C"
114+
```
115+
116+
### Integration tests
117+
118+
The `integration` task expects to find a directory called `integration-tests` and runs the file
119+
within it called `run.sh`.
120+
121+
### Crate specific tests
122+
123+
Additional, crate specific, tests can be put in an optional `contrib/extra_tests.sh` file, which is
124+
expected to be a normal `bash` file (including exit non-zero on failure).
125+
126+
### Fuzzing
127+
128+
Fuzz tests are expected to be in a crate called `fuzz/`. The `run_task.sh` script just builds
129+
the fuzz crate as a sanity check.

0 commit comments

Comments
 (0)