Jenkins pipeline conda environment creation is quiet now.

This commit is contained in:
Harrison Deng 2022-11-27 06:57:51 +00:00
parent de877ed91c
commit 3b3ecb9120

2
Jenkinsfile vendored
View File

@ -4,7 +4,7 @@ pipeline {
stage("install") { stage("install") {
steps { steps {
sh '''#!/usr/bin/env pwsh sh '''#!/usr/bin/env pwsh
conda env create -f environment.yml conda env create -q -f environment.yml
conda activate webdev conda activate webdev
npm install npm install
''' '''