Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .circleci/build/sum_sha256.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
#!/bin/bash
set -e

cd ./release/web

for f in *.tar.gz; do
sha256sum "$f" > "$f.sha256"
done
find ./release -type f -name '*.tar.gz' -execdir sh -c 'sha256sum "$1" > "$1.sha256"' _ {} \;
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -646,6 +646,10 @@ jobs:
type: enum
default: stage
enum: ['stage', 'prod', 'dev']
redisstack:
description: Build RedisStack archives
type: boolean
default: true
target:
description: Build target
type: string
Expand Down Expand Up @@ -710,6 +714,15 @@ jobs:
rm -rf release/mac
mv release/mas-universal/RedisInsight-mac-universal-mas.pkg release/RedisInsight-mac-universal-mas.pkg
no_output_timeout: 60m
- when:
condition:
equal: [ true, << parameters.redisstack >> ]
steps:
- run:
name: Repack dmg to tar
command: |
ARCH=x64 ./.circleci/redisstack/dmg.repack.sh
ARCH=arm64 ./.circleci/redisstack/dmg.repack.sh
- persist_to_workspace:
root: .
paths:
Expand All @@ -718,6 +731,7 @@ jobs:
- release/RedisInsight*.dmg.blockmap
- release/RedisInsight*.pkg
- release/*-mac.yml
- release/redisstack
windows:
executor:
name: win/default
Expand Down Expand Up @@ -961,6 +975,7 @@ jobs:
--include "RedisInsight*" \
--include "web/*" \
--include "docker/*"
--include "redisstack/*"

release-aws-private:
executor: linux-executor
Expand Down Expand Up @@ -1334,6 +1349,7 @@ workflows:
- macosx:
name: Build app - MacOS (stage)
env: stage
redisstack: false
target: << pipeline.parameters.mac >>
requires:
- Setup build (stage)
Expand Down