Add jenkinsfile, update gitignore for submodules
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good
All checks were successful
studiorailgun/fluid-sim/pipeline/head This commit looks good
This commit is contained in:
parent
5cbb1a0ee0
commit
607af99f7a
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@
|
|||||||
/.vscode
|
/.vscode
|
||||||
/shared-folder
|
/shared-folder
|
||||||
/shared-folder/**
|
/shared-folder/**
|
||||||
|
/src/main/c/lib
|
||||||
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal 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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user