Migrating to a devcontainer
All checks were successful
renamebycsv/pipeline/head This commit looks good

This commit is contained in:
2025-07-12 20:51:21 +00:00
parent eacb730961
commit 3e85185b1a
3 changed files with 35 additions and 2 deletions

10
Jenkinsfile vendored
View File

@@ -1,9 +1,15 @@
pipeline {
agent any
agent {
kubernetes {
cloud 'rsys-devel'
defaultContainer 'pip'
inheritFrom 'pip'
}
}
stages {
stage("install") {
steps {
sh 'mamba env update --file environment.yml --prefix ./env || mamba env create --force --file environment.yml --prefix ./env'
sh 'pip install -r requirements.txt'
}
}
stage("build") {