diff options
| author | Loïc Guégan <loic.guegan@mailbox.org> | 2024-10-24 11:21:30 +0200 |
|---|---|---|
| committer | Loïc Guégan <loic.guegan@mailbox.org> | 2024-10-24 11:21:30 +0200 |
| commit | 2231c567d5edc833304a8b6dada7690efb5e1294 (patch) | |
| tree | ba5467f30213d0667906c05de60394d1ffbb12e7 | |
| parent | e311aaa2bed717f28668eece5505fd0f9ad5a293 (diff) | |
Debug CI
| -rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa91d05..da19138 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,13 +21,13 @@ ubuntu: image: "ubuntu:latest" before_script: - apt update && apt install -y python3 python3-pip python-is-python3 - - pip install numpy - - pip install build + - pip install numpy --break-system-packages + - pip install build --break-system-packages - pip install virtualenv - export PATH=${PATH}:${HOME}/.local/bin - virtualenv myenv - source myenv/bin/activate - - pip install . + - pip install . --break-system-packages script: - ./tests/run.sh |
