Added kubernetes selector.
Some checks failed
filterfasta/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2024-11-14 21:09:53 +00:00
parent bf357a5524
commit 6de659df58

13
Jenkinsfile vendored
View File

@ -1,11 +1,12 @@
pipeline {
agent any
stages {
stage("clean") {
steps {
sh 'rm -rf ./dist/*'
}
agent {
kubernetes {
cloud 'rsys-devel'
defaultContainer 'pip'
inheritFrom 'pip'
}
}
stages {
stage("install") {
steps {
sh 'pip install -r requirements.txt'