Add testPaths build to the jenkinsfile

This commit is contained in:
zontreck 2025-01-04 18:22:21 -07:00
parent a1301163a6
commit de2bbde18b

2
Jenkinsfile vendored
View file

@ -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()