Unverified Commit 51b6e343 authored by Joaquim Rocha's avatar Joaquim Rocha Committed by GitHub
Browse files

Merge pull request #338 from kinvolk/linux_arm

app: Build also Linux ARM versions
parents 9efd0fd9 0ab74499
No related merge requests found
Showing with 18 additions and 2 deletions
+18 -2
......@@ -24,8 +24,22 @@
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"linux": {
"target": [
"AppImage",
"tar.gz"
{
"target": "AppImage",
"arch": [
"x64",
"armv7l",
"arm64"
]
},
{
"target": "tar.gz",
"arch": [
"x64",
"armv7l",
"arm64"
]
}
],
"executableName": "headlamp",
"maintainer": "Kinvolk <hello@kinvolk.io>",
......
......@@ -6,6 +6,8 @@ exports.default = async context => {
let arch = context.arch;
if (arch === 'x64') {
arch = 'amd64';
} else if (arch === 'armv7l') {
arch = 'arm';
}
let osName = '';
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment