-
Notifications
You must be signed in to change notification settings - Fork 49
40 lines (36 loc) · 1.36 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: ci
on: [push, pull_request, workflow_dispatch]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
# pyrpmmd isn't packaged for CentOS 8+:
# https://src.fedoraproject.org/rpms/python-pyrpmmd
# - "centos/centos:stream8"
# - "centos/centos:stream9"
- "fedora/fedora:38"
- "fedora/fedora:latest"
- "fedora/fedora:rawhide"
container:
image: quay.io/${{ matrix.container }}
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: dnf install -y python-pyrpmmd python-tox git rsync poetry
- name: Install dependencies for rawhide
run: dnf install -y gcc gcc-c++ libffi-devel python-devel python-greenlet
- name: Mark the directory as safe for git
run: git config --global --add safe.directory $PWD
- name: "rawhide hack: patch poetry to accept RPM-installed packages"
run: |
dnf install -y patch
cd $(python3 -c "import poetry; print(poetry.__path__[-1])")
poetry_ver=$(poetry --version | sed -e 's/[^0-9.]//g')
echo ${poetry_ver}
echo https://abompard.fedorapeople.org/poetry-${poetry_ver}-system-packages.patch
curl https://abompard.fedorapeople.org/poetry-${poetry_ver}-system-packages.patch | patch -p3
- name: Run Tests
run: tox