blob: 588666c8e68dc9d967c0be0d56111679245e5ff8 [file] [log] [blame]
Marc Kupietz2c2345b2024-01-28 14:25:25 +01001include:
2 local: ci/install-rkorapclient-ci.yml
3
4test-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
21test-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