Skip to content

Commit f4b80fc

Browse files
committed
use ubuntu22.04 container to get openssl 3.0
1 parent 1aada16 commit f4b80fc

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ jobs:
1818
os: ubuntu-latest
1919
container: centos:6
2020
python-version: 2.6
21+
- name: py3.10 with ossl3.0
22+
os: ubuntu-latest
23+
container: ubuntu:22.04
24+
python-version: "3.10"
25+
tox-env: py310
2126
- name: py2.7
2227
os: ubuntu-18.04
2328
python-version: 2.7
@@ -115,7 +120,7 @@ jobs:
115120
with:
116121
fetch-depth: 50
117122
- name: Ensure dependencies on CentOS
118-
if: ${{ matrix.container }}
123+
if: ${{ matrix.container == 'centos:6' }}
119124
run: |
120125
ls /etc/yum.repos.d/
121126
cat /etc/yum.repos.d/CentOS-Base.repo
@@ -144,6 +149,11 @@ jobs:
144149
yum clean all
145150
yum repolist all
146151
yum install -y git make python curl gcc libffi-devel python-devel glibc-devel openssl-devel wget
152+
- name: Ensure dependencies on Ubuntu 22.04
153+
if: ${{ matrix.container == 'ubuntu:22.04' }}
154+
run: |
155+
apt-get update
156+
apt-get install -y git make python-is-python3 python3 curl wget python3-distutils python3-pip
147157
- name: Verify git status
148158
run: |
149159
git status

0 commit comments

Comments
 (0)