File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash -e
2
2
3
+ sudo apt-get install gcc python3-dev libev4 libev-dev
4
+
3
5
aio_max_nr_recommended_value=1048576
4
6
aio_max_nr=$( cat /proc/sys/fs/aio-max-nr)
5
7
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
13
15
fi
14
16
fi
15
17
16
- BRANCH=' branch-4.5 '
18
+ BRANCH=' branch-5.0 '
17
19
18
20
python3 -m venv .test-venv
19
21
source .test-venv/bin/activate
@@ -30,7 +32,7 @@ pip install awscli
30
32
pip install https://github.com/scylladb/scylla-ccm/archive/master.zip
31
33
32
34
# 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`
34
36
AWS_BASE=s3://downloads.scylladb.com/unstable/scylla/${BRANCH} /relocatable/${LATEST_MASTER_JOB_ID}
35
37
36
38
aws s3 --no-sign-request cp ${AWS_BASE} /scylla-package.tar.gz . &
You can’t perform that action at this time.
0 commit comments