From db856dcc1bb230e8d4827c7b89911b6ca26101e8 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 19 Jul 2024 07:07:44 +0000 Subject: [PATCH] Fixing buildtime --- Jenkinsfile | 1 + environment.yml | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5211640..b322d78 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,6 +9,7 @@ pipeline { stages { stage("Install") { steps { + sh 'conda update conda' sh 'conda env update -n base --file environment.yml -q' sh 'dotnet restore Props/Props.csproj' sh 'dotnet restore Props.Tests/Props.Tests.csproj' diff --git a/environment.yml b/environment.yml index 0d0694d..1a5328c 100644 --- a/environment.yml +++ b/environment.yml @@ -1,7 +1,6 @@ name: props channels: - conda-forge - - anaconda dependencies: - - dotnet-sdk=8.0.* + - dotnet-sdk=8 - nodejs=20 \ No newline at end of file