summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorHubert Kario <hubert@kario.pl>2022-04-02 18:39:39 +0200
committerHubert Kario <hubert@kario.pl>2022-04-02 19:01:49 +0200
commitf4b80fc4f876538c851817d85e183f9d5e8fe4c6 (patch)
treee027b065bb2df6637143fb0757555f9fb59e5a59 /.github/workflows
parent1aada160725abfc1bba2f04747e593e3dda90f01 (diff)
downloadecdsa-f4b80fc4f876538c851817d85e183f9d5e8fe4c6.tar.gz
use ubuntu22.04 container to get openssl 3.0
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 728a297..4592039 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -18,6 +18,11 @@ jobs:
os: ubuntu-latest
container: centos:6
python-version: 2.6
+ - name: py3.10 with ossl3.0
+ os: ubuntu-latest
+ container: ubuntu:22.04
+ python-version: "3.10"
+ tox-env: py310
- name: py2.7
os: ubuntu-18.04
python-version: 2.7
@@ -115,7 +120,7 @@ jobs:
with:
fetch-depth: 50
- name: Ensure dependencies on CentOS
- if: ${{ matrix.container }}
+ if: ${{ matrix.container == 'centos:6' }}
run: |
ls /etc/yum.repos.d/
cat /etc/yum.repos.d/CentOS-Base.repo
@@ -144,6 +149,11 @@ jobs:
yum clean all
yum repolist all
yum install -y git make python curl gcc libffi-devel python-devel glibc-devel openssl-devel wget
+ - name: Ensure dependencies on Ubuntu 22.04
+ if: ${{ matrix.container == 'ubuntu:22.04' }}
+ run: |
+ apt-get update
+ apt-get install -y git make python-is-python3 python3 curl wget python3-distutils python3-pip
- name: Verify git status
run: |
git status