Marc Kupietz | 2c2345b | 2024-01-28 14:25:25 +0100 | [diff] [blame^] | 1 | include: |
| 2 | local: ci/install-rkorapclient-ci.yml |
| 3 | |
| 4 | test-korapclient-on-stable: |
| 5 | extends: .install-rkorapclient |
| 6 | image: ubuntu:latest |
| 7 | cache: |
| 8 | key: rkorapclient-ubuntu-stable |
| 9 | paths: |
| 10 | - apt-cache/ |
| 11 | - ccache/ |
| 12 | - rlib/ |
| 13 | script: |
| 14 | - python3 -m pip install pip -U |
| 15 | - python3 -m pip install setuptools -U |
| 16 | - python3 -m pip install pytest -U |
| 17 | - python3 -m pip install . |
| 18 | - python3 -m pytest -v |
| 19 | |
| 20 | |
| 21 | test-korapclient-on-rolling: |
| 22 | extends: .install-rkorapclient |
| 23 | image: ubuntu:rolling |
| 24 | script: |
| 25 | - python3 -m pip install pip -U --break-system-packages |
| 26 | - python3 -m pip install pytest -U --break-system-packages |
| 27 | - python3 -m pip install . --break-system-packages |
| 28 | - python3 -m pytest -v |