Skip to content
Open
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
15 changes: 10 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ jobs:
name: Deploy Snapshots to S3
command: |
cd /workspace/snapshots
for f in *.zip *.tgz; do
du -ah --apparent-size *
for f in `find . -name "*.zip" -or -name "*.tgz"`; do
aws s3 cp $f s3://redismodules/$PACKAGE_NAME/snapshots/ --acl public-read
done

Expand All @@ -190,7 +191,8 @@ jobs:
name: Deploy Releases to S3
command: |
cd /workspace
for f in *.zip *.tgz; do
du -ah --apparent-size *
for f in `find . -name "*.zip" -or -name "*.tgz"`; do
aws s3 cp $f s3://redismodules/$PACKAGE_NAME/ --acl public-read
done

Expand Down Expand Up @@ -294,12 +296,14 @@ workflows:
<<: *not-on-integ-branch
- build:
name: int-build-<< matrix.platform >>
compat-search: true
#@@ compat-search: true
compat-search: false
matrix:
alias: int-builds
parameters:
platform: [focal, bionic, xenial, centos7, centos8]
<<: *on-integ-branch
#@@<<: *on-integ-branch
<<: *not-on-integ-branch
- build:
name: version-build-<< matrix.platform >>
compat-search: false
Expand All @@ -312,7 +316,8 @@ workflows:
context: common
requires:
- int-builds
<<: *on-integ-branch
#@@<<: *on-integ-branch
<<: *not-on-integ-branch
- deploy-release:
context: common
requires:
Expand Down
2 changes: 1 addition & 1 deletion src/dep/RediSearch