Jenkinsfile + gitignore
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good

This commit is contained in:
unknown 2024-03-04 20:53:19 -05:00
parent 61124b55c1
commit e605a82df6
2 changed files with 19 additions and 1 deletions

3
.gitignore vendored
View File

@ -7,4 +7,5 @@
/.project
/.vscode
/shared-folder
/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'
}
}
}
}