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, ]