diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-06-28 16:00:49 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-06-28 16:00:49 +0200 |
| commit | 9a1578ae752075cbe4e0c658307d037cb18b56c9 (patch) | |
| tree | 49f10c958dc4401ab6be0f359aca98de1b4fb35c | |
| parent | f84359ec7a79c07bc2ae86ad81db823e1912a9e8 (diff) | |
Debug CI
| -rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b9ee384..aa91d05 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,8 +2,8 @@ archlinux: image: "archlinux:latest" before_script: - pacman -Sy python python-pip python-numpy diffutils --noconfirm --needed - - pip install build - - pip install . + - pip install build --break-system-packages + - pip install . --break-system-packages script: - ./tests/run.sh @@ -11,9 +11,9 @@ debian: image: "debian:latest" before_script: - apt update && apt install -y python3 python3-pip python-is-python3 - - pip install numpy - - pip install build - - pip install . + - pip install numpy --break-system-packages + - pip install build --break-system-packages + - pip install . --break-system-packages script: - ./tests/run.sh |
