Skip to content

Commit 70f6545

Browse files
authored
Merge pull request #90 from Gor027/fix_ci_setup
Switch to using OpenSSL 1.1 in CI This allows us to remove usage of ubuntu xenial-security which was causing errors due to unknown keys. It seems that xenial-security does not maintain keys for the Ubuntu keyserver.
2 parents b6b2658 + d558486 commit 70f6545

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ jobs:
2222

2323
- name: Setup environment
2424
run: |
25-
sudo sh -c "echo 'deb http://security.ubuntu.com/ubuntu xenial-security main' >> /etc/apt/sources.list"
26-
sudo apt-get update
27-
sudo apt-get install libssl1.0.0 libuv1-dev libkrb5-dev libc6-dbg
25+
sudo apt-get install libssl1.1 libuv1-dev libkrb5-dev libc6-dbg
2826
sudo snap install valgrind --classic
2927
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
3028
sudo sh -c "echo 2097152 >> /proc/sys/fs/aio-max-nr"

.github/workflows/cassandra.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ jobs:
2828

2929
- name: Setup environment
3030
run: |
31-
sudo sh -c "echo 'deb http://security.ubuntu.com/ubuntu xenial-security main' >> /etc/apt/sources.list"
32-
sudo apt-get update
33-
sudo apt-get install libssl1.0.0 libuv1-dev libkrb5-dev libc6-dbg
31+
sudo apt-get install libssl1.1 libuv1-dev libkrb5-dev libc6-dbg
3432
sudo snap install valgrind --classic
3533
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
3634
sudo sh -c "echo 2097152 >> /proc/sys/fs/aio-max-nr"

0 commit comments

Comments
 (0)