Skip to content

Commit 3c55ec8

Browse files
committed
ci: support running integration tests with libev support
for some of the cloud test it's importent we can run with other connection classes
1 parent c89784f commit 3c55ec8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ci/run_integration_test.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! /bin/bash -e
22

3+
sudo apt-get install gcc python3-dev libev4 libev-dev
4+
35
aio_max_nr_recommended_value=1048576
46
aio_max_nr=$(cat /proc/sys/fs/aio-max-nr)
57
echo "The current aio-max-nr value is $aio_max_nr"
@@ -13,7 +15,7 @@ if (( aio_max_nr != aio_max_nr_recommended_value )); then
1315
fi
1416
fi
1517

16-
BRANCH='branch-4.5'
18+
BRANCH='branch-5.0'
1719

1820
python3 -m venv .test-venv
1921
source .test-venv/bin/activate
@@ -30,7 +32,7 @@ pip install awscli
3032
pip install https://github.com/scylladb/scylla-ccm/archive/master.zip
3133

3234
# download version
33-
LATEST_MASTER_JOB_ID=`aws --no-sign-request s3 ls downloads.scylladb.com/unstable/scylla/${BRANCH}/relocatable/ | grep '2021-' | tr -s ' ' | cut -d ' ' -f 3 | tr -d '\/' | sort -g | tail -n 1`
35+
LATEST_MASTER_JOB_ID=`aws --no-sign-request s3 ls downloads.scylladb.com/unstable/scylla/${BRANCH}/relocatable/ | tr -s ' ' | cut -d ' ' -f 3 | tr -d '\/' | sort -g | tail -n 1`
3436
AWS_BASE=s3://downloads.scylladb.com/unstable/scylla/${BRANCH}/relocatable/${LATEST_MASTER_JOB_ID}
3537

3638
aws s3 --no-sign-request cp ${AWS_BASE}/scylla-package.tar.gz . &

0 commit comments

Comments
 (0)