Skip to content

Commit

Permalink
Fixing the build (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
chayim authored Sep 30, 2021
1 parent e2565d3 commit 3a895d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ workflows:
parameters:
platform: [bionic, xenial, centos7]
context: common
<<: *on-integ-and-version-tags
<<: *on-any-branch
- deploy-artifacts:
context: common
requires:
Expand Down
9 changes: 5 additions & 4 deletions build/reqpacks/build
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ export READIES=$ROOT/deps/readies
OSNICK=${OSNICK:-bionic}
ARCH=${ARCH:-x64}

if [[ `$ROOT/deps/readies/bin/istagfresh > /tmp/rgver 2> /dev/null; echo $?` == 0 ]]; then
BRSPEC="$(cat /tmp/rgver)"
RGSYNC_VERSION="$(cat /tmp/rgver | sed 's/^v\(.*\)/\1/')"
else
git branch |grep master
if [ $? -eq 0 ]; then
BRSPEC=""
RGSYNC_VERSION=99.99.99
else
RGSYNC_VERSION=`grep version pyproject.toml |cut -d "=" -f 2-2|sed -e 's/"//g'`
BRSPEC=`git rev-list --max-count=1 HEAD`
fi

if [[ -z $GEARS_VERSION ]]; then
Expand Down
2 changes: 0 additions & 2 deletions sbin/system-setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ def common_last(self):
self.pip_install("--no-cache-dir git+https://github.com/Grokzen/redis-py-cluster.git@master")
self.pip_install("--no-cache-dir git+https://github.com/RedisLabsModules/RLTest.git@master")
self.pip_install("git+https://github.com/RedisGears/gears-cli.git")
self.pip_install("-r %s/requirements.txt" % ROOT)
self.pip_install("PyMySQL")

#----------------------------------------------------------------------------------------------

Expand Down

0 comments on commit 3a895d0

Please sign in to comment.