Skip to content

Commit b7bf037

Browse files
committed
doc: Mention ARM executables in release process
Mention ARM executables in the release process documentation (these were introduced in #8188). As well as that Linux tarballs have changed name to contain an architecture tuple, instead of `linux32`/`linux64`. Also mention that `-debug` files should not be uploaded (these were introduced in #8167).
1 parent 0d41d70 commit b7bf037

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

doc/release-process.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,10 @@ sha256sum * > SHA256SUMS
210210

211211
The list of files should be:
212212
```
213-
bitcoin-${VERSION}-linux32.tar.gz
214-
bitcoin-${VERSION}-linux64.tar.gz
213+
bitcoin-${VERSION}-aarch64-linux-gnu.tar.gz
214+
bitcoin-${VERSION}-arm-linux-gnueabihf.tar.gz
215+
bitcoin-${VERSION}-i686-pc-linux-gnu.tar.gz
216+
bitcoin-${VERSION}-x86_64-linux-gnu.tar.gz
215217
bitcoin-${VERSION}-osx64.tar.gz
216218
bitcoin-${VERSION}-osx.dmg
217219
bitcoin-${VERSION}.tar.gz
@@ -220,6 +222,11 @@ bitcoin-${VERSION}-win32.zip
220222
bitcoin-${VERSION}-win64-setup.exe
221223
bitcoin-${VERSION}-win64.zip
222224
```
225+
The `*-debug*` files generated by the gitian build contain debug symbols
226+
for troubleshooting by developers. It is assumed that anyone that is interested
227+
in debugging can run gitian to generate the files for themselves. To avoid
228+
end-user confusion about which file to pick, as well as save storage
229+
space *do not upload these to the bitcoin.org server, nor put them in the torrent*.
223230

224231
- GPG-sign it, delete the unsigned file:
225232
```

0 commit comments

Comments
 (0)