@@ -19,7 +19,7 @@ Static binaries building using custom alpine image.
19
19
image defined in [ Dockerfile] ( build/Dockerfile ) . In order to build them you should specify
20
20
` OCTEZ_VERSION ` env variable and run the script:
21
21
```
22
- export OCTEZ_VERSION="v14.1 "
22
+ export OCTEZ_VERSION="v17.3 "
23
23
./docker-static-build.sh
24
24
```
25
25
After that, directory will contain built static binaries.
@@ -32,7 +32,7 @@ one can build native binaries for current architecture or build `aarch64` binari
32
32
In order to build only specific binaries, or experimental/dev ones, you should specify
33
33
` OCTEZ_EXECUTABLES ` env variable:
34
34
```
35
- export OCTEZ_VERSION="v14.1 "
35
+ export OCTEZ_VERSION="v17.3 "
36
36
export OCTEZ_EXECUTABLES="octez-smart-rollup-wasm-debugger octez-protocol-compiler octez-dal-node"
37
37
./docker-static-build.sh
38
38
```
@@ -92,7 +92,7 @@ To see all available options, run:
92
92
In order to build binary ` .deb ` packages specify ` OCTEZ_VERSION ` and
93
93
run the following command:
94
94
```
95
- export OCTEZ_VERSION="v14.1 "
95
+ export OCTEZ_VERSION="v17.3 "
96
96
cd .. && ./docker/package.py --os ubuntu --type binary
97
97
```
98
98
@@ -101,14 +101,14 @@ It is also possible to specify packages to build with `-p` or `--packages` optio
101
101
```
102
102
# cd .. && ./docker/package.py -os ubuntu --type binary --packages <tezos-binary-1> <tezos-binary-2>
103
103
# Example for baker
104
- export OCTEZ_VERSION="v14.1 "
104
+ export OCTEZ_VERSION="v17.3 "
105
105
cd .. && ./docker/package.py --os ubuntu --type binary -p tezos-client tezos-node
106
106
```
107
107
108
108
In order to choose specific ubuntu distribution to build for (see [ support policy] ( ../docs/support-policy.md ) ),
109
109
use ` -d ` or ` --distributions ` option:
110
110
```
111
- export OCTEZ_VERSION="v14.1 "
111
+ export OCTEZ_VERSION="v17.3 "
112
112
cd .. && ./docker/package.py --os ubuntu --type binary -d focal jammy -p tezos-client tezos-node
113
113
```
114
114
@@ -126,7 +126,7 @@ sudo apt install <path to deb file>
126
126
127
127
In order to build source packages run the following commands:
128
128
```
129
- export OCTEZ_VERSION="v14.1 "
129
+ export OCTEZ_VERSION="v17.3 "
130
130
cd .. && ./docker/package.py --os ubuntu --type source
131
131
# you can also build single source package
132
132
cd .. && ./docker/package.py --os ubuntu --type source --packages tezos-client
@@ -145,7 +145,7 @@ the submitter info and signed.
145
145
146
146
If you want to sign resulted source packages automatically, you can provide signer identity through ` --gpg-sign ` or ` -s ` option:
147
147
```
148
- export OCTEZ_VERSION="v14.1 "
148
+ export OCTEZ_VERSION="v17.3 "
149
149
cd .. && ./docker/package.py --os ubuntu --type source -d focal jammy -p tezos-client -s <signer_info>
150
150
```
151
151
For example,
` signer_info ` can be the following:
` Roman Melnikov <[email protected] > `
@@ -219,22 +219,22 @@ To see all available options, run:
219
219
In order to build binary ` .rpm ` packages specify ` OCTEZ_VERSION ` and
220
220
run the following command:
221
221
```
222
- export OCTEZ_VERSION="v14.1 "
222
+ export OCTEZ_VERSION="v17.3 "
223
223
cd .. && ./docker/package.py --os fedora --type binary
224
224
```
225
225
226
226
It is also possible to specify packages to build with ` -p ` or ` --packages ` option. In order to do that run the following:
227
227
```
228
228
# cd .. && ./docker/package.py --os fedora --type binary --packages <tezos-binary-1> <tezos-binary-2>
229
229
# Example for baker
230
- export OCTEZ_VERSION="v14.1 "
230
+ export OCTEZ_VERSION="v17.3 "
231
231
cd .. && ./docker/package.py --os fedora --type binary -p tezos-client tezos-node
232
232
```
233
233
234
234
In order to build packages for specific Fedora distribution (see [ support policy] ( ../docs/support-policy.md ) ),
235
235
use ` -d ` or ` --distributions ` option:
236
236
```
237
- export OCTEZ_VERSION="v14.1 "
237
+ export OCTEZ_VERSION="v17.3 "
238
238
cd .. && ./docker/package.py --os fedora -d 38 --type binary -p tezos-baking
239
239
```
240
240
@@ -255,15 +255,15 @@ sudo dnf install <path to rpm file>
255
255
256
256
In order to build source packages run the following commands:
257
257
```
258
- export OCTEZ_VERSION="v14.1 "
258
+ export OCTEZ_VERSION="v17.3 "
259
259
cd .. && ./docker/package.py --os fedora --type source
260
260
# you can also build single source package
261
261
cd .. && ./docker/package.py --os fedora --type source -p tezos-client
262
262
```
263
263
264
264
If you want to sign resulted source packages automatically, you can provide signer identity through ` --gpg-sign ` or ` -s ` option:
265
265
```
266
- export OCTEZ_VERSION="v14.1 "
266
+ export OCTEZ_VERSION="v17.3 "
267
267
cd .. && ./docker/package.py --os fedora --type source -p tezos-client -s <signer_info>
268
268
```
269
269
For example,
` signer_info ` can be the following:
` Roman Melnikov <[email protected] > `
0 commit comments