File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,9 @@ jobs:
139
139
140
140
- name : Setup environment
141
141
run : |
142
+ sudo sh -c "echo 'deb http://security.ubuntu.com/ubuntu xenial-security main' >> /etc/apt/sources.list"
143
+ sudo apt-get update
144
+ sudo apt-get install libssl1.0.0
142
145
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
143
146
144
147
- name : Run integration tests on Cassandra (${{ matrix.cassandra-version }})
@@ -193,6 +196,9 @@ jobs:
193
196
194
197
- name : Setup environment
195
198
run : |
199
+ sudo sh -c "echo 'deb http://security.ubuntu.com/ubuntu xenial-security main' >> /etc/apt/sources.list"
200
+ sudo apt-get update
201
+ sudo apt-get install libssl1.0.0
196
202
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
197
203
sudo sh -c "echo 2097152 >> /proc/sys/fs/aio-max-nr"
198
204
Original file line number Diff line number Diff line change @@ -97,6 +97,9 @@ setup [Scylla CCM](https://github.com/scylladb/scylla-ccm) in its place:
97
97
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
98
98
```
99
99
100
+ The SSL tests use ` libssl.1.0.0.so ` . Before starting the tests, make sure it is installed on your system
101
+ (` compat-openssl10 ` on Fedora and ` libssl1.0.0 ` on Ubuntu, ` xenial-security ` repository source).
102
+
100
103
Two Maven properties control its execution:
101
104
102
105
- ` cassandra.version ` : the Cassandra version. This has a default value in the root POM,
Original file line number Diff line number Diff line change 92
92
<test .groups>unit</test .groups>
93
93
<test .osgi.skip>true</test .osgi.skip>
94
94
<javadoc .opts />
95
+ <!-- Append "-fedora" to os.detected.classifier for Fedora systems
96
+ (see https://netty.io/wiki/forked-tomcat-native.html) -->
97
+ <os .detection.classifierWithLikes>fedora</os .detection.classifierWithLikes>
95
98
</properties >
96
99
97
100
<dependencyManagement >
You can’t perform that action at this time.
0 commit comments