You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [Build] Build ARM64 for deb and rpm
Build ARM64 for deb with the following commands:
yarn build --deb-arm --skip-archives
yarn build --deb-arm --skip-archives --release
Build ARM64 for rpm with the following commands:
yarn build --rpm-arm --skip-archives
yarn build --rpm-arm --skip-archives --release
Issue partially resolved:
#1259
Signed-off-by: Kawika Avilla <[email protected]>
(cherry picked from commit 5941044)
Copy file name to clipboardExpand all lines: DEVELOPER_GUIDE.md
+31-2
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ access it.
66
66
67
67
### Building the artifacts
68
68
69
-
To build the artifacts for all supported platforms, run the following:
69
+
To build the artifacts for all supported platforms, run the following:
70
70
71
71
```
72
72
yarn build --skip-os-packages
@@ -78,7 +78,36 @@ If you want to build a specific platform, pass the platform flag after `yarn bui
78
78
yarn build-platform --darwin
79
79
```
80
80
81
-
You could pass one or multiple flags. If you don't pass any flag, `yarn build-platform` will use your local environment. Currenly we only support `darwin` (darwin x64), `linux` (linux x64) and `linux-arm` (linux arm64).
81
+
You could pass one or multiple flags. If you don't pass any flag, `yarn build-platform` will build an artifact based on your local environment.
82
+
83
+
Currently, the supported flags for this script are:
84
+
*`darwin` (builds Darwin x64)
85
+
*`linux` (builds Linux x64)
86
+
*`linux-arm` (builds Linux ARM64).
87
+
88
+
If you would like to build only a DEB x64 artifact, run the following:
89
+
90
+
```
91
+
yarn build --deb --skip-archives
92
+
```
93
+
94
+
If you would like to build only a DEB ARM64 artifact, run the following:
95
+
96
+
```
97
+
yarn build --deb-arm --skip-archives
98
+
```
99
+
100
+
If you would like to build only a RPM x64 artifact, run the following:
101
+
102
+
```
103
+
yarn build --rpm --skip-archives
104
+
```
105
+
106
+
If you would like to build only a RPM ARM64 artifact, run the following:
0 commit comments