Add jenkinsfile, update gitignore for submodules
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good

This commit is contained in:
unknown 2024-03-04 10:18:22 -05:00
parent 5cbb1a0ee0
commit 607af99f7a
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'
}
}
}
}