CI: Fix build
Change-Id: I79214b1d513cfdba4f34b553e9b3bebcd63ce255
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 588666c..7e33ae3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
include:
local: ci/install-rkorapclient-ci.yml
-test-korapclient-on-stable:
+test-korapclient-on-latest:
extends: .install-rkorapclient
image: ubuntu:latest
cache:
@@ -11,18 +11,8 @@
- ccache/
- rlib/
script:
- - python3 -m pip install pip -U
- - python3 -m pip install setuptools -U
- - python3 -m pip install pytest -U
+ - mkdir -p ~/.config/pip
+ - echo -e "[global]\nbreak-system-packages = true" >> ~/.config/pip/pip.conf
- python3 -m pip install .
- python3 -m pytest -v
-
-test-korapclient-on-rolling:
- extends: .install-rkorapclient
- image: ubuntu:rolling
- script:
- - python3 -m pip install pip -U --break-system-packages
- - python3 -m pip install pytest -U --break-system-packages
- - python3 -m pip install . --break-system-packages
- - python3 -m pytest -v