From 8efffef7c9314eb6d3f8dfb0062f713e27b4659d Mon Sep 17 00:00:00 2001 From: drake Date: Thu, 6 Jun 2024 20:05:34 -0500 Subject: [PATCH] test --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a22d641..2ec8e2a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,9 @@ pipeline { stages { stage('Flutter Cleanup/Update') { steps { - sh '''cd fbla_ui + sh '''printenv ${env.JOBLINK_LOCAL_USER} +printenv $JOBLINK_LOCAL_USER +cd fbla_ui flutter upgrade --force flutter pub upgrade flutter --version @@ -48,7 +50,7 @@ pipeline { steps { sh '''cd fbla_ui dart pub get - dart run ./test/fbla_api_test.dart''' + dart run ./fbla-api/test/fbla_api_test.dart''' } } stage('Deploy Local Web UI') { @@ -73,7 +75,7 @@ pipeline { def remote = [ name : 'HostServer', host : '192.168.0.216', - user : '${env.JOBLINK_LOCAL_USER}', + user : '${JOBLINK_LOCAL_USER}', password : '${env.JOBLINK_LOCAL_PASSWD}', allowAnyHosts: true, ]