From 7d740ef4a9d062072f2b9a4b67d728e89bb46cf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20And=C3=A9n?= Date: Tue, 11 Jun 2024 09:02:40 +0200 Subject: [PATCH] ci: no cache for Jenkins --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bcb60c9c8..6600c1cc3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -46,11 +46,11 @@ pipeline { sh '${PYBIN}/python3 -m venv $HOME' sh '''#!/bin/bash -ex source $HOME/bin/activate - python3 -m pip install --upgrade pip - python3 -m pip install --upgrade pycuda cupy-cuda112 numba - python3 -m pip install torch==1.10.2+cu111 -f https://download.pytorch.org/whl/torch_stable.html - python3 -m pip install python/cufinufft - python3 -m pip install pytest + python3 -m pip install --no-cache-dir --upgrade pip + python3 -m pip install --no-cache-dir --upgrade pycuda cupy-cuda112 numba + python3 -m pip install --no-cache-dir torch==1.10.2+cu111 -f https://download.pytorch.org/whl/torch_stable.html + python3 -m pip install --no-cache-dir python/cufinufft + python3 -m pip install --no-cache-dir pytest python -c "from numba import cuda; cuda.cudadrv.libs.test()" python3 -m pytest --framework=pycuda python/cufinufft python3 -m pytest --framework=numba python/cufinufft