Skip to content

Commit 71ce14b

Browse files
author
Artem
committed
do not build for linux
1 parent e88a93a commit 71ce14b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@ jobs:
480480
- run:
481481
name: Repack AppImage to tar
482482
command: |
483-
ARCH=amd64 ./.circleci/redisstack/app-image.repack.sh
484-
ARCH=arm64 ./.circleci/redisstack/app-image.repack.sh
483+
ARCH=x64 ./.circleci/redisstack/app-image.repack.sh
484+
# ARCH=arm64 ./.circleci/redisstack/app-image.repack.sh
485485
- run:
486486
name: Build sources
487487
command: ./.circleci/redisstack/build.sh

.circleci/redisstack/app-image.repack.sh

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

33
ARCH=${ARCH:-x64}
44
WORKING_DIRECTORY=$(pwd)
5-
SOURCE_APP="RedisInsight-preview-linux-$ARCH.AppImage"
5+
SOURCE_APP=${SOURCE_APP:-"RedisInsight-preview-linux.AppImage"}
66
TAR_NAME="RedisInsight-preview-app-linux.$ARCH.tar.gz"
77
TMP_FOLDER="/tmp/RedisInsight-app-$ARCH"
88

electron-builder.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@
5555
"target": [
5656
{
5757
"target": "zip",
58-
"arch": ["x64", "arm64"]
58+
"arch": ["x64"]
5959
},
6060
{
6161
"target": "deb",
62-
"arch": ["x64", "arm64"]
62+
"arch": ["x64"]
6363
},
6464
{
6565
"target": "AppImage",
66-
"arch": ["x64", "arm64"]
66+
"arch": ["x64"]
6767
}
6868
],
6969
"synopsis": "Redis GUI by Redis Ltd.",
7070
"category": "Development",
71-
"artifactName": "${productName}-${os}-${arch}.${ext}",
71+
"artifactName": "${productName}-${os}.${ext}",
7272
"desktop": {
7373
"Name": "RedisInsight",
7474
"Type": "Application",

0 commit comments

Comments
 (0)