From 8c446a574ebce3c69e9f8a2b582146a0d9462893 Mon Sep 17 00:00:00 2001 From: pavelbannov Date: Wed, 5 May 2021 18:30:06 +0300 Subject: [PATCH] Jenkins: fix stages --- build/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/Jenkinsfile b/build/Jenkinsfile index df0e36bfc4..bdb003dfac 100644 --- a/build/Jenkinsfile +++ b/build/Jenkinsfile @@ -6,12 +6,12 @@ pipeline { stage('Unix') { agent { label 'net-core' } stages { - stage('Backend') { + stage('Frontend') { steps { sh 'yarn install && yarn build' } } - stage('Frontend') { + stage('Backend') { steps { sh 'dotnet build ASC.Web.sln' } @@ -21,12 +21,12 @@ pipeline { stage('Windows') { agent { label 'win-core' } stages { - stage('Backend') { + stage('Frontend') { steps { bat 'yarn install && yarn build' } } - stage('Frontend') { + stage('Backend') { steps { bat 'dotnet build ASC.Web.sln' }