fix Tumbleweed docker

This commit is contained in:
Philippe Teuwen
2023-09-08 15:46:49 +02:00
parent 87bdbef851
commit 7b5c350089
3 changed files with 11 additions and 2 deletions

View File

@@ -8,8 +8,7 @@ RUN zypper --non-interactive install --no-recommends shadow sudo git patterns-de
# zypper --gpg-auto-import-keys refresh && \
# zypper --non-interactive install cross-arm-none-eabi-gcc12 cross-arm-none-eabi-newlib
RUN zypper --non-interactive install cmake python3 python3-pip && \
python3 -m pip install ansicolors sslcrypto
RUN zypper --non-interactive install cmake python311 python311-pip python311-virtualenv
RUN zypper --non-interactive install ocl-icd-devel

View File

@@ -16,5 +16,10 @@ Or if you want to run single test,
```
sudo zypper refresh && sudo zypper --non-interactive update
make clean; make -j
python3 -m venv /tmp/venv
source /tmp/venv/bin/activate
python3 -m pip install --use-pep517 pyaes
python3 -m pip install ansicolors sslcrypto
tools/pm3_tests.sh --long
deactivate
```

View File

@@ -5,4 +5,9 @@
# docker/opensuse-tumbleweed/run_tests.sh;
sudo zypper refresh && sudo zypper --non-interactive update
python3 -m venv /tmp/venv
source /tmp/venv/bin/activate
python3 -m pip install --use-pep517 pyaes
python3 -m pip install ansicolors sslcrypto
tools/release_tests.sh
deactivate