Skip to content

Commit 4cbea89

Browse files
Fix release failures
1 parent 3a12649 commit 4cbea89

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

HOWTO.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,13 @@ It's highly recommended to use the docker container to run the release process,
170170
the docker container can be pulled from DockerHub and launched via this command:
171171

172172
```sh
173-
docker run -v $PWD:/mnt/workspace -i -t swiftnav/libsbp-build:2025-02-10
173+
docker run -v $PWD:/mnt/workspace -i -t swiftnav/libsbp-build:2025-10-29
174174
```
175175

176176
You can invoke individual stages like so:
177177

178178
```sh
179-
docker run -v $PWD:/mnt/workspace -i -t swiftnav/libsbp-build:2025-02-10 \
179+
docker run -v $PWD:/mnt/workspace -i -t swiftnav/libsbp-build:2025-10-29 \
180180
/bin/bash -c "make python"
181181
```
182182

@@ -234,10 +234,10 @@ and something needs to be repeated.
234234
make java jsonschema protobuf
235235
```
236236

237-
For C, Haskell and JavaScript (JavaScript, make needs to be run twice to update the package information):
237+
For C, Haskell and Rust:
238238

239239
```sh
240-
make c haskell javascript rust
240+
make c haskell rust
241241
git add c/include/libsbp/version.h haskell/sbp.cabal rust/sbp/Cargo.toml
242242
git commit --amend -a -m 'Release <INCREMENTED_TAG>'
243243
git tag -f -a INCREMENTED_TAG -m "Version INCREMENTED_TAG of libsbp."
@@ -250,6 +250,7 @@ and something needs to be repeated.
250250
make javascript
251251
git add javascript/sbp/RELEASE-VERSION package.json package-lock.json
252252
git commit --amend -a -m 'Release <INCREMENTED_TAG>'
253+
git tag -f -a INCREMENTED_TAG -m "Version INCREMENTED_TAG of libsbp."
253254
```
254255

255256
For Kaitai
@@ -258,6 +259,7 @@ and something needs to be repeated.
258259
make kaitai
259260
git add kaitai/ksy/sbp.ksy
260261
git commit --amend -a -m 'Release <INCREMENTED_TAG>'
262+
git tag -f -a INCREMENTED_TAG -m "Version INCREMENTED_TAG of libsbp."
261263
```
262264

263265
4. Build the docs:

python/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888

8989
# List of patterns, relative to source directory, that match files and
9090
# directories to ignore when looking for source files.
91-
exclude_patterns = []
91+
exclude_patterns = ['sbp.jit.rst']
9292

9393
# The reST default role (used for this markup: `text`) to use for all
9494
# documents.

0 commit comments

Comments
 (0)