Compare commits

...

1 Commits

Author SHA1 Message Date
unknown
607af99f7a Add jenkinsfile, update gitignore for submodules
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good
2024-03-04 10:18:22 -05:00
2 changed files with 19 additions and 1 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@
/.vscode
/shared-folder
/shared-folder/**
/src/main/c/lib

17
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,17 @@
pipeline {
agent any
tools {
maven '3.9.6'
}
stages {
stage('Build') {
steps {
sh 'mvn --version'
sh 'java -version'
sh 'git submodule init'
sh 'git submodule update'
sh 'mvn clean generate-resources package'
}
}
}
}