Updated CI to new serverside config and added devcontainer config
Some checks failed
bmlsa/pipeline/head There was a failure building this commit

This commit is contained in:
2024-11-14 19:57:55 +00:00
parent 4d2c491733
commit 9d98d5d8d1
3 changed files with 37 additions and 2 deletions

11
Jenkinsfile vendored
View File

@@ -1,9 +1,16 @@
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("unit tests") {