From de2bbde18be43ec2df0804bcd1c19e01a8abd45e Mon Sep 17 00:00:00 2001 From: zontreck Date: Sat, 4 Jan 2025 18:22:21 -0700 Subject: [PATCH] Add testPaths build to the jenkinsfile --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e207bb6..eca6c6b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,6 +23,7 @@ pipeline { flutter pub get flutter build linux dart compile exe -o cemmserver bin/server.dart + dart compile exe -o testPaths bin/testAbsolutePath.dart cd build/linux/x64/release/bundle; tar -cvf ../../../../../client.tgz . ''' @@ -32,6 +33,7 @@ pipeline { post { always { archiveArtifacts artifacts: 'cemmserver' + archiveArtifacts artifacts: 'testPaths' archiveArtifacts artifacts: '*.tgz' deleteDir()