Trying more

This commit is contained in:
Filip Gralinski 2023-10-24 15:53:46 +02:00
parent bf2a9990fd
commit a6b0a6b362
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -1,9 +1,9 @@
pipeline {
agent any
agent { docker { image 'python:3.10.10' } }
stages {
stage('build') {
steps {
sh 'pip3 install -r requirements.txt'
sh 'pip install --no-cache-dir -r requirements.txt'
}
}
stage('test') {